-
Notifications
You must be signed in to change notification settings - Fork 667
/
package.json
62 lines (62 loc) · 1.93 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
58
59
60
61
62
{
"name": "synaptic",
"version": "1.1.4",
"description": "architecture-free neural network library",
"main": "./dist/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:chrome": "karma start --single-run --browsers Chrome",
"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": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"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": "^2.0.4",
"mocha": "^2.2.4",
"pre-push": "^0.1.1",
"webpack": "^3.5.5"
},
"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": "MIT",
"bugs": {
"url": "https://github.com/cazala/synaptic/issues"
},
"homepage": "http://caza.la/synaptic",
"engines": {
"node": ">=4"
}
}