-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "screeps",
"version": "1.0.0",
"description": "",
"private": true,
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/matheussampaio/screeps.git"
},
"author": "Matheus Sampaio <matheus@sampaio.us>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matheussampaio/screeps/issues"
},
"typings": "typings/index.d.ts",
"homepage": "https://github.com/matheussampaio/screeps#readme",
"scripts": {
"lint": "tslint -p tsconfig.json \"src/**/*.ts\"",
"build": "rollup -c",
"upload": "gulp upload",
"build:upload": "rollup -c && gulp upload",
"dev": "nodemon -w src -x npm run build:upload",
"release": "NODE_ENV=production rollup -c && SCREEPS_BRANCH=default gulp upload",
"postinstall": "./bin/download-latest-types.sh"
},
"nodemonConfig": {
"ext": "ts,js,json",
"watch": [
"src",
"../os/dist",
"../utils/dist"
],
"delay": "500"
},
"devDependencies": {
"@types/lodash": "4.14.138",
"@types/screeps": "2.5.5",
"dotenv": "8.2.0",
"gulp": "4.0.2",
"gulp-screeps": "1.0.8",
"lodash": "3.10.1",
"nodemon": "1.19.4",
"prettier": "1.19.1",
"rollup": "1.27.0",
"rollup-plugin-clear": "2.0.7",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-typescript2": "0.25.2",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.7.2"
}
}