This repository has been archived by the owner on Dec 17, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
63
{
"name": "neocortex-js",
"version": "0.5.0",
"description": "Run trained deep neural networks in the browser or node.js without external dependencies",
"main": "dist/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-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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transcranial/neocortex.git"
},
"keywords": [
"neuralnet",
"neuralnets",
"neuralnetworks",
"neural",
"network",
"networks",
"deep",
"machine",
"learning",
"keras"
],
"author": "Leon Chen <[email protected]> (@transcranial)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/transcranial/neocortex/issues"
},
"homepage": "https://github.com/transcranial/neocortex#readme",
"devDependencies": {
"almost-equal": "1.0.0",
"babel-cli": "6.5.1",
"babel-core": "6.5.2",
"babel-eslint": "4.1.8",
"babel-preset-es2015": "6.5.0",
"babelify": "7.2.0",
"browserify": "13.0.0",
"eslint": "2.0.0",
"express": "4.13.4",
"minifyify": "7.2.1",
"mocha": "2.4.5"
},
"dependencies": {
"axios": "0.9.1",
"bluebird": "3.3.1",
"cwise": "1.0.9",
"cwise-compiler": "1.1.2",
"ndarray": "1.0.18",
"ndarray-blas-level1": "1.1.1",
"ndarray-gemm": "1.0.0",
"ndarray-ops": "1.2.2",
"ndarray-unpack": "1.0.0"
}
}