forked from oliviertassinari/serviceworker-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.85 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
{
"name": "serviceworker-webpack-plugin",
"version": "0.2.3",
"description": "Simplifies creation of a service worker to serve your webpack bundles",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"lint": "eslint . && echo \"eslint: no lint errors\"",
"test": "npm run lint && npm run test:unit && npm run flow",
"test:unit": "NODE_ENV=test mocha",
"test:watch": "NODE_ENV=test mocha -w",
"prebuild": "rm -rf lib/",
"prettier": "find . -name \"*.js\" | grep -v -f .eslintignore | xargs prettier --write --no-semi --single-quote --trailing-comma es5 --print-width 100",
"flow": "flow",
"build": "babel src --out-dir lib",
"version": "yarn build && pkgfiles",
"docs:development": "babel-node ./node_modules/.bin/webpack-dev-server --config=docs/webpack/developmentConfig.js --progress",
"docs:production": "rm -rf docs/dist && NODE_ENV=docs-browser-production babel-node ./node_modules/.bin/webpack --config=docs/webpack/productionConfig.js --progress"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/oliviertassinari/serviceworker-webpack-plugin.git"
},
"keywords": [
"serviceworker",
"webpack",
"plugin"
],
"author": "Olivier Tassinari <[email protected]> (https://github.com/oliviertassinari)",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliviertassinari/serviceworker-webpack-plugin/issues"
},
"homepage": "https://github.com/oliviertassinari/serviceworker-webpack-plugin#readme",
"dependencies": {
"minimatch": "^3.0.4"
},
"peerDependencies": {
"webpack": "^4"
},
"devDependencies": {
"autoprefixer": "^7.1.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-mocha": "^4.12.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.2",
"flow-bin": "^0.53.1",
"force-case-sensitivity-webpack-plugin": "^0.2.1",
"html-webpack-plugin": "^2.30.1",
"loglevel": "^1.4.1",
"mocha": "^3.5.0",
"node-sass": "^4.5.0",
"pkgfiles": "^2.3.2",
"postcss-loader": "^2.0.6",
"prettier": "^1.11.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}