-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.17 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
{
"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",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "rollup -c rollup.test-unit-config.js && mocha dist/test-unit.bundle.js",
"test-integration": "npm run build && rollup -c rollup.test-integration-config.js && mocha dist/test-integration.bundle.js",
"watch-main": "rollup -cw --environment DEST:main",
"watch-pserver": "rollup -cw --environment DEST:pserver",
"watch-sim": "rollup -cw --environment DEST:sim"
},
"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/jest": "^23.3.10",
"@types/lodash": "^3.10.1",
"@types/node": "^10.5.5",
"@types/screeps": "^2.4.0",
"chai": "^4.2.0",
"jest": "^23.6.0",
"lodash": "^3.10.1",
"prettier": "^1.14.0",
"rollup": "^0.63.4",
"rollup-plugin-buble": "^0.19.4",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-multi-entry": "^2.0.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-nodent": "^0.2.2",
"rollup-plugin-screeps": "^0.1.2",
"rollup-plugin-typescript2": "^0.16.1",
"screeps-server-mockup": "^1.4.3",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.14.0",
"tslint-plugin-prettier": "^1.3.0",
"typemoq": "^2.1.0",
"typescript": "^2.9.2"
},
"dependencies": {
"source-map": "~0.6.1"
}
}