forked from cazala/synaptic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "synaptic",
"version": "1.0.4",
"description": "architecture-free neural network library",
"main": "./src/synaptic",
"scripts": {
"test": "mocha test"
},
"devDependencies": {
"browserify": "^10.1.3",
"gulp": "^3.8.11",
"gulp-insert": "^0.4.0",
"gulp-mocha": "^2.0.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"mocha": "^2.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/cazala/synaptic.git"
},
"keywords": [
"neural network",
"machine learning",
"long short term memory",
"perceptron",
"architecture free"
],
"author": "Juan Cazala <[email protected]> (http://juancazala.com/)",
"license": {
"type": "MIT",
"url": "https://github.com/cazala/synaptic/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/cazala/synaptic/issues"
},
"homepage": "http://synaptic.juancazala.com",
"engines": {
"node": ">=0.10"
}
}