forked from screepers/screeps-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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-starter",
"version": "0.0.0",
"description": "",
"main": "./dist/main.js",
"repository": "screepers/screeps-typescript-starter",
"scripts": {
"gulp": "gulp",
"postinstall": "typings install",
"deploy": "gulp build",
"deploy-prod": "gulp build --target prod",
"deploy-local": "gulp build --target local",
"start": "gulp watch",
"prod": "gulp watch --target prod",
"test": "gulp test",
"tslint": "tslint \"src/**/*.ts\"",
"typings": "typings",
"jshint-gulp": "jshint gulpfile.js libs/gulp-screeps-upload.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"deep-equal": "^1.0.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-clean": "^0.3.2",
"gulp-collect": "^0.1.0",
"gulp-dot-flatten": "^1.0.2",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-tslint": "^7.1.0",
"gulp-typescript": "^3.0.0",
"gulp-util": "^3.0.7",
"jshint": "^2.9.2",
"lodash": "^4.14.0",
"q": "^1.4.1",
"recast": "^0.12.3",
"simple-git": "^1.61.0",
"source-map": "^0.5.6",
"source-map-loader": "^0.2.1",
"through2": "^2.0.1",
"ts-loader": "^2.0.0",
"tslint": "^5.0.0",
"typescript": "^2.0.3",
"typings": "^2.1.0",
"webpack": "^2.2.1",
"webpack-stream": "^3.2.0"
}
}