-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "bundle-ensure-webpack-plugin",
"version": "1.1.1",
"description": "ensure bundle installed and make retry-able before startup",
"main": "./lib/index.js",
"scripts": {
"lint": "prettier --write \"{lib,examples,template,tests}/**/*.js\" \"!**/dist/**\" && eslint lib tests template examples --fix",
"build-example": "webpack --config examples/webpack.config.js",
"test": "yarn lint && node ./tests/build.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mc-zone/bundle-ensure-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"bundle",
"retry",
"reload",
"ensure"
],
"author": "mc-zone",
"license": "MIT",
"dependencies": {
"tapable": "^1.0.0",
"uglify-js": "^3.0.26",
"webpack-sources": "^1.1.0"
},
"peerDependencies": {
"webpack": "^4.16.5"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-puppeteer": "^3.5.2",
"prettier": "^1.14.2",
"puppeteer": "^1.10.0",
"rimraf": "^2.6.2",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"jest": {
"verbose": false,
"preset": "jest-puppeteer"
},
"engines": {
"node": ">=8"
}
}