-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
48
{
"name": "screeps-server-mockup",
"license": "MIT",
"repository": "https://github.com/screepers/screeps-server-mockup",
"version": "1.5.1",
"main": "dist/src/main.js",
"types": "dist/src/main.d.ts",
"scripts": {
"build": "tsc",
"coverage": "yarn run build && nyc mocha dist/test --ui tdd --exit",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" \"utils/**/*.ts\"",
"prepare": "yarn run build",
"prepublishOnly": "yarn test && yarn run lint",
"test": "yarn run build && mocha dist/test --ui tdd --exit"
},
"files": [
"assets",
"dist/src",
"dist/utils"
],
"dependencies": {
"@types/fs-extra-promise": "^1.0.8",
"@types/lodash": "^4.14.149",
"@types/screeps": "^3.0.0",
"fs-extra-promise": "^1.0.1",
"lodash": "^4.17.19",
"screeps": "^4.1.5"
},
"peerDependencies": {
"@screeps/common": "^2.13.2",
"@screeps/driver": "^5.1.0",
"@screeps/engine": "^4.1.2"
},
"devDependencies": {
"@types/mocha": "^7.0.1",
"@types/node": "10.17.16",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-plugin-import": "^2.20.0",
"mocha": "^7.0.0",
"npm-cli-login": "^0.1.1",
"nyc": "^15.0.0",
"typescript": "^3.8.2"
}
}