forked from luucv/tfjs-indexeddb-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.13 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": "tfjs-indexeddb-helpers",
"version": "1.1.0",
"description": "Tensorflow.js IndexedDB helpers",
"main": "lib/lib.min.js",
"scripts": {
"test": "karma start --single-run --no-auto-watch",
"test:watch": "karma start",
"prebuild": "rimraf lib",
"build": "webpack --env production",
"start": "nodemon --watch webpack.config.js --exec \"webpack --progress --watch --env development\""
},
"repository": {
"type": "git",
"url": "https://github.com/luucv/tfjs-indexeddb-actions"
},
"keywords": [
"webpack",
"karma",
"jasmine",
"babel",
"istanbul",
"starter",
"boilerplate"
],
"author": "Luuc Verburgh",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.1.0",
"@babel/core": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"chalk": "^2.4.1",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^5.6.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-compat": "^2.5.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.1.2",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"nodemon": "^1.18.4",
"rimraf": "^2.6.2",
"terser-webpack-plugin": "1.1.0",
"webpack": "^4.28.4",
"webpack-cli": "3.1.1",
"webpack-merge": "^4.1.4"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": ">=6.9.0"
},
"dependencies": {
}
}