-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.96 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
{
"name": "tfjs-model-view",
"version": "0.2.0",
"description": "Tensorflow.JS model viewer",
"main": "lib/tfjs-model-view.min.js",
"scripts": {
"build": "webpack --env dev && webpack --env build && npm run test",
"dev": "webpack-dev-server --hot --config webpack.dev.config.js --progress --colors --watch --mode=development",
"test": "mocha --require babel-register --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-register --colors -w ./test/*.spec.js",
"test:cover": "cross-env NODE_ENV=test nyc mocha --require babel-register --colors test/*.js",
"profile": "webpack --profile --json > stats.json && webpack-bundle-analyzer ./stats.json"
},
"repository": {
"type": "git",
"url": "https://github.com/cstefanache/tfjs-model-view"
},
"keywords": [
"tensorflow",
"tfjs",
"webpack",
"es6",
"library",
"universal",
"umd",
"commonjs"
],
"author": "Cornel Stefanache",
"license": "MIT",
"bugs": {
"url": "https://github.com/cstefanache/tfjs-model-view/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jsdom": "11.11.0",
"jsdom-global": "3.0.2",
"mocha": "^4.0.1",
"nyc": "^13.1.0",
"raw-loader": "^4.0.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.14",
"yargs": "^10.0.3"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"dependencies": {
"@tensorflow/tfjs": "^0.15.0",
"webpack-bundle-analyzer": "^3.0.4"
}
}