forked from wavelets/keras-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.45 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
87
88
89
90
91
92
93
94
95
96
{
"name": "keras-js",
"version": "0.1.0",
"description": "Run trained Keras models in your browser, GPU-powered using WebGL.",
"scripts": {
"lint": "standard src test",
"watch": "webpack --watch --config webpack.dev.config.js",
"build": "npm run lint && webpack --config webpack.prod.config.js",
"watch:demos": "cd demos && webpack --watch --config webpack.dev.config.js",
"build:demos": "cd demos && webpack --config webpack.prod.config.js",
"server": "http-server . -c-1 -p 3000"
},
"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": {
"bluebird": "^3.4.6",
"cwise": "^1.0.9",
"lodash": "^4.16.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"
},
"devDependencies": {
"autoprefixer": "^6.5.1",
"axios": "^0.15.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-async-to-module-method": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"css-loader": "^0.25.0",
"http-server": "^0.9.0",
"postcss-loader": "^0.13.0",
"precss": "^1.4.0",
"raw-loader": "^0.5.1",
"standard": "^8.4.0",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.25"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"KerasJS",
"chai",
"testGlobals",
"TEST_DATA",
"weblas",
"performance"
]
},
"babel": {
"presets": [
"latest"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread",
[
"transform-async-to-module-method",
{
"module": "bluebird",
"method": "coroutine"
}
]
]
}
}