-
Notifications
You must be signed in to change notification settings - Fork 502
/
Copy pathpackage.json
76 lines (76 loc) · 2.79 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
{
"name": "keras-js",
"version": "1.0.3",
"description": "Run Keras models in the browser, with GPU support using WebGL",
"main": "lib/index.js",
"unpkg": "dist/keras.min.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; NODE_ENV=production BABEL_ENV=node babel src --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",
"proto2js": "pbjs --target static-module --wrap es6 proto/model.proto > src/proto.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transcranial/keras-js.git"
},
"keywords": ["keras", "deep", "learning", "neural", "networks", "javascript", "webgl", "webgl2", "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": {
"@babel/polyfill": "7.0.0-beta.39",
"axios": "^0.17.1",
"bluebird": "^3.5.1",
"cwise": "^1.0.10",
"eventemitter3": "^3.0.1",
"lodash": "^4.17.5",
"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-resample": "^1.0.1",
"ndarray-squeeze": "^1.0.2",
"ndarray-tile": "^1.0.3",
"ndarray-unpack": "^1.0.0",
"ndarray-unsqueeze": "^1.0.3",
"performance-now": "^2.1.0",
"protobufjs": "^6.8.4"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.39",
"@babel/core": "7.0.0-beta.39",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.39",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.39",
"@babel/preset-env": "7.0.0-beta.39",
"babel-eslint": "^8.2.1",
"babel-loader": "8.0.0-beta.0",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-lodash": "^3.3.2",
"blueimp-load-image": "^2.18.0",
"chroma-js": "^1.3.6",
"css-loader": "^0.28.9",
"eslint": "^4.17.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.2",
"http-server": "^0.11.1",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.1.0",
"style-loader": "^0.20.1",
"vue": "^2.5.13",
"vue-loader": "^14.1.1",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.13",
"vuetify": "^0.17.7",
"webpack": "^3.10.0"
}
}