-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "@screeps/engine",
"version": "4.2.22",
"bin": {
"screeps-engine-main": "dist/main.js",
"screeps-engine-runner": "dist/runner.js",
"screeps-engine-processor": "dist/processor.js"
},
"main": "dist/index.js",
"scripts": {
"test": "cross-env DRIVER_MODULE=@screeps/driver jasmine",
"prepublish": "gulp"
},
"dependencies": {
"@screeps/pathfinding": "^0.4.17",
"bulk-require": "^0.2.1",
"cross-env": "^5.2.0",
"lodash": "3.10.1",
"q": "^1.0.1"
},
"devDependencies": {
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.2.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-traceur": "^0.17.2",
"gulp-watch": "^4.3.11",
"jasmine": "^3.3.0"
},
"license": "ISC",
"author": "Artem Chivchalov <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/screeps/engine.git"
},
"babel": {
"plugins": [
"transform-es2015-destructuring",
"transform-strict-mode"
]
},
"browser": {
"@screeps/core": "@screeps/simcore"
}
}