-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
70 lines (70 loc) · 1.88 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
{
"name": "webpack-retry-chunk-load-plugin",
"version": "3.1.1",
"description": "A webpack plugin to retry loading of chunks that failed to load",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"peerDependencies": {
"webpack": ">=5.0.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.5.0",
"@types/memory-fs": "^0.3.3",
"@types/node": "^16.11.33",
"@types/webpack": "^5.28.0",
"codecov": "^3.8.1",
"express": "^4.18.1",
"gts": "^3.1.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^5.2.0",
"jest": "^27.5.1",
"memory-fs": "^0.5.0",
"nodemon": "^2.0.16",
"pretty-quick": "^3.1.3",
"ts-jest": "^27.1.4",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"scripts": {
"lint": "gts lint",
"test": "jest",
"test:watch": "npm t -- --watch",
"test:ci": "npm t -- --runInBand --coverage",
"codecov": "cat coverage/lcov.info | codecov",
"test:e2e": "webpack --config test/e2e/webpack.config.ts && nodemon test/e2e/server.ts",
"ci": "npm run lint && npm run test:ci",
"prepare": "npm run compile",
"clean": "gts clean",
"compile": "tsc -p tsconfig.build.json",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/webpack-retry-chunk-load-plugin.git"
},
"keywords": [
"webpack",
"webpack plugin"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/webpack-retry-chunk-load-plugin/issues"
},
"homepage": "https://github.com/mattlewis92/webpack-retry-chunk-load-plugin#readme",
"dependencies": {
"prettier": "^2.6.2"
},
"files": [
"dist"
]
}