-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "bacterio",
"version": "0.0.0",
"description": "Machine Learning and Evolution experiments",
"private": true,
"scripts": {
"start": "webpack src/index.js dist/scripts.js --watch",
"build": "webpack src/index.js dist/scripts.js",
"deploy": "gh-pages-deploy",
"add-dist": "git add -f dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deltaidea/bacterio.git"
},
"author": "Nikita Litvin <[email protected]> (https://github.com/deltaidea)",
"license": "MIT",
"bugs": {
"url": "https://github.com/deltaidea/bacterio/issues"
},
"homepage": "https://github.com/deltaidea/bacterio#readme",
"dependencies": {
"noisejs": "^2.1.0",
"phaser": "^2.6.2",
"synaptic": "^1.0.8"
},
"standard": {
"globals": [
"game"
]
},
"devDependencies": {
"gh-pages-deploy": "^0.4.2",
"webpack": "^1.13.3"
},
"gh-pages-deploy": {
"prep": [
"build"
],
"post": [
"add-dist"
],
"noprompt": false
}
}