-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.88 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.88 KB
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
{
"name": "neocortex-rnn-cups",
"version": "0.4.3",
"description": "Run trained neural networks in the browser or node.js",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build-browser": "rm -rf build && mkdir build && browserify src/neuralnet.js -t babelify -p [minifyify --no-map] --standalone NeuralNet -o build/neocortex.min.js && echo \"NeuralNet=NeuralNet.default\" >> build/neocortex.min.js",
"build-browser-debug": "rm -rf build && mkdir build && browserify src/neuralnet.js -t babelify --standalone NeuralNet -o build/neocortex.js && echo \"NeuralNet=NeuralNet.default\" >> build/neocortex.js",
"build-node": "rm -rf dist && node_modules/.bin/babel src --out-dir dist",
"build": "npm run build-node && npm run build-browser",
"prepublish": "npm run build",
"test": "mocha --reporter spec --compilers js:babel-core/register",
"examples-server": "npm run build-browser && cp build/neocortex.min.js examples && node examples/server.js"
},
"keywords": [
"neuralnet",
"neuralnets",
"neuralnetworks",
"neural",
"network",
"networks",
"deep",
"machine",
"learning",
"keras"
],
"author": "William Melicher",
"devDependencies": {
"almost-equal": "^1.0.0",
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-eslint": "^5.0.0-beta3",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"eslint": "^1.10.2",
"express": "^4.13.3",
"minifyify": "^7.1.0",
"mocha": "^2.3.4"
},
"dependencies": {
"axios": "^0.7.0",
"bluebird": "^3.0.5",
"cwise": "^1.0.8",
"cwise-compiler": "^1.1.2",
"ndarray": "^1.0.18",
"ndarray-blas-level1": "^1.1.1",
"ndarray-ops": "^1.2.2",
"ndarray-unpack": "^1.0.0",
"msgpack-lite": "^0.1.14"
},
"browserify" : {
"transform" : [
"babelify"
]
}
}