forked from screepers/screeps-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.47 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": "united-friends",
"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": {
"postinstall": "node ./postinstall.js",
"lint": "tslint --fix \"src/**/*.ts\"",
"watch-lint-fix": "nodemon --delay 10 lint",
"push-main": "rollup -c --dest main",
"push-pserver": "rollup -c --dest pserver",
"push-sim": "rollup -c --dest sim",
"test": "echo \"Error: no test specified\" && exit 1",
"watch-main": "rollup -cw --dest main",
"watch-pserver": "rollup -cw --dest pserver",
"watch-sim": "rollup -cw --dest sim",
"watch-compile": "rollup -cw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fubz/united-friends.git"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/fubz/united-friends/issues"
},
"homepage": "https://github.com/fubz/united-friends#readme",
"devDependencies": {
"@types/lodash": "^3.10.1",
"@types/screeps": "^2.1.0",
"@types/source-map": "^0.5.2",
"gift": "^0.10.2",
"rollup": "^0.53.2",
"rollup-plugin-clean": "^1.0.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-screeps": "^0.1.1",
"rollup-plugin-typescript2": "^0.9.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
},
"dependencies": {
"source-map": "^0.6.1"
}
}