forked from transcranial/keras-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.75 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "keras-js",
"version": "0.3.0",
"description": "Run Keras models (tensorflow backend) in the browser, with GPU support",
"main": "lib/index.js",
"scripts": {
"watch": "NODE_ENV=development BABEL_ENV=browser webpack --watch --config webpack.config.js",
"build:browser": "rm -rf dist; NODE_ENV=production BABEL_ENV=browser webpack --config webpack.config.js",
"build:node": "rm -rf lib; cp -r src lib; NODE_ENV=production BABEL_ENV=node babel lib --out-dir lib",
"build": "npm run build:browser && npm run build:node",
"server": "http-server . -c-1 -p 3000",
"demos:watch": "cd demos; NODE_ENV=development BABEL_ENV=browser webpack --watch --config webpack.config.js",
"demos:build": "cd demos; rm -rf dist; NODE_ENV=production BABEL_ENV=browser webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transcranial/keras-js.git"
},
"keywords": [
"keras",
"deep",
"learning",
"machine",
"learning",
"neural",
"networks",
"javascript",
"webgl",
"gpu"
],
"author": "Leon Chen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/transcranial/keras-js/issues"
},
"homepage": "https://github.com/transcranial/keras-js#readme",
"dependencies": {
"axios": "^0.16.1",
"babel-polyfill": "^6.23.0",
"bluebird": "^3.5.0",
"cwise": "^1.0.10",
"is-buffer": "^1.1.5",
"lodash": "^4.17.4",
"ndarray": "^1.0.18",
"ndarray-blas-level2": "^1.1.0",
"ndarray-concat-rows": "^1.0.1",
"ndarray-gemm": "^1.0.0",
"ndarray-ops": "^1.2.2",
"ndarray-squeeze": "^1.0.2",
"ndarray-tile": "^1.0.3",
"ndarray-unpack": "^1.0.0",
"ndarray-unsqueeze": "^1.0.3",
"three-first-person-controls": "^0.2.1",
"three-js": "^79.0.0",
"weblas": "^0.9.1"
},
"devDependencies": {
"arraybuffer-loader": "^0.2.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"blueimp-load-image": "^2.12.2",
"css-loader": "^0.28.2",
"eslint": "^3.19.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^2.0.3",
"glslify-loader": "^1.0.2",
"http-server": "^0.10.0",
"postcss-cssnext": "^2.11.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.5",
"raw-loader": "^0.5.1",
"script-loader": "^0.7.0",
"vue": "^2.3.3",
"vue-loader": "^12.1.0",
"vue-mdl": "^1.1.1",
"vue-router": "^2.5.3",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.7.0"
}
}