-
Notifications
You must be signed in to change notification settings - Fork 296
/
package.json
34 lines (34 loc) · 1021 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
{
"name": "genetic-cars-html5",
"version": "1.0.0",
"description": "HTML5 Genetic Cars ==================",
"main": "cawro.js",
"watch": {
"build": "{src,test}/**/*.js"
},
"scripts": {
"watch": "npm-watch",
"watch-wait": " npm run build && wait-run -p './src/**/*' npm run build-main",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-main && npm run build-graph",
"build-main": "browserify --debug ./src/index.js -o ./bundle.js",
"build-graph": "browserify --debug ./src/bare.js -o ./bundle-bare.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formula1/HTML5_Genetic_Cars.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/formula1/HTML5_Genetic_Cars/issues"
},
"homepage": "https://github.com/formula1/HTML5_Genetic_Cars#readme",
"devDependencies": {
"browserify": "^14.3.0",
"npm-watch": "^0.3.0"
},
"dependencies": {
"mersenne-twister": "^1.1.0"
}
}