-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
47 lines (47 loc) · 1.12 KB
/
package.json
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
{
"name": "screeps-api",
"version": "1.16.1",
"description": "",
"repository": "screepers/node-screeps-api",
"main": "dist/ScreepsAPI.js",
"module": "src/index.js",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"lint": "standard src/**/*.js",
"lint-fix": "standard src/**/*.js --fix",
"test_": "mocha",
"test": "echo Tests disabled, TODO: FIX THIS!",
"2npm": "publish-if-not-published"
},
"author": "Adam Shumann",
"license": "ISC",
"bin": {
"screeps-api": "bin/screeps-api.js"
},
"dependencies": {
"axios": "^0.28.0",
"commander": "^7.2.0",
"debug": "^4.1.1",
"ws": "^7.4.4",
"yamljs": "^0.3.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"lodash": "^4.17.11",
"mocha": "^8.3.2",
"publish-if-not-published": "^2.0.0",
"rollup": "^2.44.0",
"rollup-plugin-typescript2": "^0.30.0",
"standard": "*",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"browser": {
"ws": "./src/ws-browser.js"
},
"types": "dist/types/index.d.ts"
}