-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 954 Bytes
/
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
{
"name": "opentower",
"version": "1.0.0",
"description": "Open arena tower defence game",
"main": "index.js",
"scripts": {
"watch": "webpack --watch",
"build": "standard && webpack",
"dist": "standard && webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardoportilho/opentower.git"
},
"keywords": [],
"author": "Eduardo <[email protected]> (http://www.portilho.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/eduardoportilho/opentower/issues"
},
"homepage": "https://github.com/eduardoportilho/opentower#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"standard": "^10.0.2",
"webpack": "^3.3.0"
},
"dependencies": {
"lodash": "^4.17.4"
},
"standard": {
"ignore": [
"dist/*"
]
}
}