This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
89 lines (89 loc) · 3.19 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
{
"name": "serviceworker-webpack-plugin",
"version": "1.0.1",
"description": "Simplifies creation of a service worker to serve your webpack bundles",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rimraf ./docs/dist ./lib",
"lint": "eslint . --fix && echo \"eslint: no lint errors\"",
"test": "(cd ./test/webpack3; yarn install) && npm run lint && npm run test:unit && npm run test:3 && npm run flow",
"test:unit": "NODE_ENV=test mocha src/{,**/}*.spec.js",
"test:watch": "NODE_ENV=test mocha src/{,**/}*.spec.js -w",
"test:3": "NODE_ENV=test mocha test/webpack3/index.js",
"prebuild": "npm run clean",
"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 --mode=development --config=docs/webpack/developmentConfig.js --progress",
"docs:production": "npm run clean && NODE_ENV=docs-browser-production babel-node ./node_modules/.bin/webpack --mode=production --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": "^8.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"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.11",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-mocha": "^4.12.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"flow-bin": "^0.68.0",
"force-case-sensitivity-webpack-plugin": "^0.2.1",
"html-webpack-plugin": "^3.0.6",
"loglevel": "^1.6.1",
"mocha": "^5.0.4",
"node-sass": "^4.7.2",
"pkgfiles": "^2.3.2",
"postcss-loader": "^2.1.1",
"prettier": "^1.11.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
}
}