-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "keras-model-viewer",
"version": "0.0.4",
"description": "SVG-based viewer for Keras models",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js --progress",
"build:prod": "webpack --config webpack.prod.js --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neurals-ro/keras-model-viewer.git"
},
"keywords": [
"keras",
"model",
"neural",
"networks"
],
"author": "Christian Tzurcanu",
"contributors": [
{
"name": "Loredana Cirstea",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/neurals-ro/keras-model-viewer/issues"
},
"homepage": "https://github.com/neurals-ro/keras-model-viewer#readme",
"dependencies": {
"dagre": "0.7.4",
"svg.js": "2.6.0",
"svg.panzoom.js": "0.0.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"uglifyjs-webpack-plugin": "^0.4.3",
"uglify-js": "git://github.com/mishoo/UglifyJS2.git#harmony",
"webpack": "^2.4.1"
}
}