-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.48 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
50
51
52
53
54
{
"name": "botbrains",
"version": "0.5.20",
"description": "Robot brain tools to automate your nodebot",
"main": "index.js",
"browser": "static/NeuralNetwork.js",
"scripts": {
"test": "mocha",
"copy": "cp node_modules/@sdesalas/3d-force-graph/dist/3d-force-graph.min.js ./static/lib && cp node_modules/@sdesalas/3d-force-graph/dist/3d-force-graph.js ./static/lib && cp node_modules/socket.io-client/socket.io.js ./static/lib",
"build": "rollup -c && npm run copy",
"serve": "node quickstart.js",
"display": "opn http://localhost:8811 || true",
"start": "npm run display && npm run serve"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sdesalas/botbrains.git"
},
"keywords": [
"robot",
"brain",
"neural",
"network",
"nodebots",
"johnny-five",
"3d",
"webgl"
],
"author": "Steven de Salas",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sdesalas/botbrains/issues"
},
"homepage": "https://github.com/sdesalas/botbrains#readme",
"dependencies": {
"node-static": "^0.7.9",
"os-utils": "0.0.14",
"socket.io": "1.4.8"
},
"devDependencies": {
"@sdesalas/3d-force-graph": "^2.0.10",
"assert-fuzzy": "^1.0.0",
"events": "^1.1.1",
"mocha": "^3.4.2",
"opn-cli": "^3.1.0",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"uglify-js": "^3.0.15"
}
}