-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 KB
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": "hwp-inline-runtime-chunk-plugin",
"version": "2.0.6",
"description": "Plugin to inline WebPack runtime chunks when using html-webpack-plugin",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint -f gha .",
"test": "node --require ts-node/register --test-reporter=spec --test-reporter-destination=stdout --test-reporter=node-reporter-gha --test-reporter-destination=stdout --test src/tests/*.test.ts",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"inline",
"runtime"
],
"author": "Volodymyr Kolesnykov <volodymyr@wildwolf.name> (https://wildwolf.name/)",
"license": "MIT",
"homepage": "https://github.com/sjinks/hwp-attributes-plugin#readme",
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map"
],
"typings": "dist/index.d.ts",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.0",
"cheerio": "^1.0.0",
"eslint-formatter-gha": "^2.0.0",
"html-webpack-plugin": "^5.6.0",
"memfs": "^4.12.0",
"node-reporter-gha": "^2.0.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"webpack": "^5.95.0"
},
"peerDependencies": {
"html-webpack-plugin": "^4.0.0 || ^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjinks/hwp-inline-runtime-chunk-plugin.git"
},
"bugs": {
"url": "https://github.com/sjinks/hwp-inline-runtime-chunk-plugin/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}