forked from perborgen/synaptic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
55
56
57
{
"name": "synaptic",
"version": "1.0.12",
"description": "architecture-free neural network library",
"main": "./src/synaptic",
"scripts": {
"test": "npm run test:mocha:src",
"test:dist": "npm run build && npm run test:mocha:dist && npm run test:karma:browsers",
"test:mocha:src": "mocha test/_inject-src test",
"test:mocha:dist": "mocha test/_inject-dist test",
"test:karma:browsers": "karma start --single-run --browsers Chrome,Firefox,SafariPrivate",
"test:karma:phantomjs": "karma start --single-run --browsers PhantomJS",
"test:travis": "npm run test:mocha:src && npm run build && npm run test:mocha:dist",
"build": "webpack --config webpack.config.js"
},
"prepush": [
"test",
"build"
],
"devDependencies": {
"chai": "^3.5.0",
"chai-stats": "^0.3.0",
"karma": "^1.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.4",
"pre-push": "^0.1.1",
"webpack": "^1.13.1"
},
"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://caza.la/synaptic",
"engines": {
"node": ">=4"
}
}