-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 896 Bytes
/
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
{
"name": "html-webpack-inline-runtime-plugin",
"version": "1.3.0",
"description": "Inline your webpack runtime chunk(s) when using html-webpack-plugin.",
"repository": "https://github.com/chippers/html-webpack-inline-runtime-plugin",
"keywords": [
"webpack",
"html-webpack-plugin"
],
"license": "MIT",
"author": {
"name": "Chip Reed",
"email": "chip@chip.sh",
"url": "https://chip.sh"
},
"main": "index.js",
"files": [
"/index.ts",
"/index.js",
"/index.js.map",
"/index.d.ts"
],
"scripts": {
"prepare": "tsc",
"format": "prettier --write index.ts package.json tsconfig.json"
},
"devDependencies": {
"@types/webpack": "^4.0.0",
"html-webpack-plugin": "^4.0.0",
"prettier": "^2.0.0",
"typescript": "^3.0.0",
"webpack": "^4.0.0"
},
"peerDependencies": {
"html-webpack-plugin": ">=4.0.0 <5"
}
}