-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "hwp-attributes-plugin",
"version": "2.2.1",
"description": "Plugin to add various attributes to script tags injected by 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjinks/hwp-attributes-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"async",
"defer",
"module",
"nomodule"
],
"author": "Volodymyr Kolesnykov <volodymyr@wildwolf.name> (https://wildwolf.name/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sjinks/hwp-attributes-plugin/issues"
},
"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": "^1.4.3",
"html-webpack-plugin": "^5.5.3",
"memfs": "^4.6.0",
"node-reporter-gha": "^2.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"webpack": "^5.89.0"
},
"dependencies": {
"minimatch": ">=9.0.0 <11.0.0"
},
"peerDependencies": {
"html-webpack-plugin": "^4.0.0 || ^5.0.0"
},
"publishConfig": {
"provenance": true
}
}