forked from BrainJS/brain.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1010 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
35
36
37
38
39
40
41
{
"name": "brain.js",
"description": "Neural network library",
"version": "0.7.1",
"author": "Heather Arthur <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/harthur-org/brain.js.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.21.5",
"canvas": "~1.3.12",
"grunt": "~0.4.5",
"grunt-contrib-uglify": "~0.2.7",
"grunt-mocha-test": "~0.11.0",
"browserify": "~3.46.1"
},
"keywords": [
"neural network",
"classifier",
"machine learning"
],
"bugs": {
"url": "https://github.com/harthur-org/brain.js/issues"
},
"homepage": "https://github.com/harthur-org/brain.jsreadme",
"directories": {
"test": "test"
},
"license": "MIT"
}