-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "screeps-module-manager",
"version": "0.0.1",
"description": "Automatically transform and synchronize your screeps modules",
"main": "lib/index.js",
"scripts": {
"build": "babel -d lib src",
"watch:build": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/screepers/screeps-module-manager.git"
},
"keywords": [
"screeps",
"transform",
"upload"
],
"author": "Adam Snodgrass <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/screepers/screeps-module-manager/issues"
},
"homepage": "https://github.com/screepers/screeps-module-manager#readme",
"dependencies": {
"chokidar": "^1.6.0",
"fs-promise": "^0.5.0",
"just-promiseify": "^1.1.1",
"request-promise-native": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015-auto": "^1.1.0",
"babel-preset-stage-0": "^6.5.0"
}
}