-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "screeps-typescript-starter",
"version": "3.0.0",
"description": "",
"main": "index.js",
"//": "If you add or change the names of destinations in screeps.json, make sure you update these scripts to reflect the changes",
"scripts": {
"lint": "tslint -p tsconfig.json \"src/**/*.ts\"",
"build": "rollup -c",
"push-main": "rollup -c --environment DEST:main",
"push-pserver": "rollup -c --environment DEST:pserver",
"push-sim": "rollup -c --environment DEST:sim",
"watch-main": "rollup -cw --environment DEST:main",
"watch-pserver": "rollup -cw --environment DEST:pserver",
"watch-sim": "rollup -cw --environment DEST:sim",
"push-myserver": "rollup -c rollup.myserver.config.js",
"test": "mocha -r tshook.js -r tsconfig-paths/register spec/**/*.spec.ts",
"build-server-test": "rollup -c server-test/rollup.test.config.js",
"test-server": "node server-test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/screepers/screeps-typescript-starter.git"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/screepers/screeps-typescript-starter/issues"
},
"homepage": "https://github.com/screepers/screeps-typescript-starter#readme",
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/lodash": "^3.10.1",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.5",
"@types/screeps": "^2.4.0",
"bmp-js": "^0.1.0",
"chai": "^4.2.0",
"dependency-tree": "^6.2.1",
"eslint": "^5.7.0",
"get-pixels": "^3.3.2",
"glob": "^7.1.3",
"gulp": "^3.9.1",
"gulp-better-rollup": "^3.3.0",
"gulp-filter": "^5.1.0",
"gulp-rename": "^1.4.0",
"gulp-rollup": "^2.16.2",
"gulp-sourcemaps": "^2.6.4",
"lodash": "^2.4.1",
"mocha": "^5.2.0",
"prettier": "^1.14.0",
"rollup": "^0.63.4",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-screeps": "^0.1.2",
"rollup-plugin-typescript2": "^0.16.1",
"screeps-server-mockup": "^1.4.3",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.14.0",
"tslint-plugin-prettier": "^1.3.0",
"typemoq": "^2.1.0",
"typescript": "^3.1.1"
},
"dependencies": {
"@types/loglevel": "^1.5.3",
"chalk": "^2.4.1",
"fastpriorityqueue": "^0.6.1",
"glob-promise": "^3.4.0",
"loglevel": "^1.6.1",
"loglevel-plugin-prefix": "^0.8.4",
"should": "^13.2.3",
"source-map": "~0.6.1"
}
}