-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 936 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
{
"name": "node-nn",
"version": "1.0.0",
"description": "A simple neural network to run with Node.js",
"keywords": ["neural", "network", "neuroevolution"],
"repository" : "github:BenShelton/node-nn",
"bugs": { "url" : "https://github.com/BenShelton/node-nn/issues" },
"main": "lib/index.js",
"scripts": {
"xor": "node examples/xor.js",
"mnist": "node examples/mnist.js",
"xor-evo": "node examples/xor-evo.js",
"mnist-evo": "node examples/mnist-evo.js",
"test": "mocha",
"lint": "eslint *.js"
},
"author": "Ben Jones <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"csv-parse": "^2.0.0",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.0"
}
}