forked from harthur/brain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 854 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
{
"name": "brain",
"description": "Neural network library",
"version": "0.7.0",
"author": "Heather Arthur <[email protected]>",
"repository": {
"type": "git",
"url": "http://github.com/harthur/brain.git"
},
"scripts": {
"test-unit": "mocha test/unit",
"test-cv": "mocha test/cross-validation --timeout 10000",
"test": "npm run test-unit && npm run test-cv"
},
"main": "./lib/brain",
"dependencies": {
"underscore": ">=1.5.1",
"inherits": "~2.0.1"
},
"devDependencies": {
"mocha": ">=1.0.0",
"canvas": ">=0.10.0",
"grunt": "~0.4.3",
"grunt-contrib-uglify": "~0.2.0",
"grunt-mocha-test": "~0.11.0",
"browserify": "~3.32.0"
},
"keywords": ["neural network", "classifier", "machine learning"]
}