-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "orbiting",
"version": "0.0.1",
"description": "The official Orbiting client library.",
"main": "lib/index.js",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"scripts": {
"prepublish": "rimraf lib && tsc -b tsconfig.dist.json",
"format": "prettier --write .",
"test": "tsc && ava",
"coverage": "tsc && c8 ava"
},
"author": "Orbiting Tech",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/OrbitingTech/lib-node.git"
},
"ava": {
"require": [
"dotenv/config"
],
"verbose": true,
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"compile": false
}
},
"c8": {
"all": true,
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/types/**/*",
"**/*.test.js"
]
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/debug": "^4.1.12",
"@types/node": "^20.11.17",
"@types/ws": "^8.5.10",
"ava": "^6.1.3",
"c8": "^9.1.0",
"dotenv": "^16.4.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fluent-json-schema": "^4.2.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.1"
},
"dependencies": {
"axios": "^1.7.5",
"debug": "^4.3.4",
"ws": "^8.18.0"
}
}