-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.06 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
{
"type": "module",
"name": "entry-chunk-loader",
"version": "1.0.0",
"description": "Webpack loader to generate a new entry chunk.",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"main": "./index.cjs",
"scripts": {
"format": "prettier --write .",
"test": "ava test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shian15810/entry-chunk-loader.git"
},
"keywords": [
"entry",
"chunk",
"webpack",
"loader"
],
"author": "Chuah Chee Shian <shian15810@gmail.com> (https://github.com/shian15810)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shian15810/entry-chunk-loader/issues"
},
"homepage": "https://github.com/shian15810/entry-chunk-loader#readme",
"dependencies": {
"inert-entry-webpack-plugin": "^4.0.2",
"loader-utils": "^2.0.0"
},
"devDependencies": {
"ava": "^3.13.0",
"file-loader": "^6.2.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"webpack": "^4.44.2"
},
"peerDependencies": {
"webpack": "*"
}
}