-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·86 lines (86 loc) · 1.98 KB
/
package.json
File metadata and controls
executable file
·86 lines (86 loc) · 1.98 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "html-rspack-tags-plugin",
"version": "0.0.3",
"description": "lets you define html tags to inject with HtmlRspackPlugin",
"main": "index.js",
"types": "typings.d.ts",
"engines": {
"node": ">=16"
},
"files": [
"index.js",
"typings.d.ts"
],
"scripts": {
"prepublish": "npm run test",
"pretest": "semistandard",
"test": "jasmine",
"testfilter": "jasmine --filter=\"name of suite or test\"",
"debug": "node-debug jasmine",
"release": "node ./scripts/release.mjs"
},
"semistandard": {
"ignore": [
"spec/**/*-bundle.js",
"spec/dist/**",
"scripts/**"
]
},
"unmockedModulePathPatterns": [
"jasmine-expect"
],
"repository": {
"type": "git",
"url": "https://github.com/rspack-contrib/html-rspack-tags-plugin.git"
},
"keywords": [
"rspack",
"plugin",
"html",
"tags",
"inject",
"include",
"assets"
],
"author": "Jon Harris <harris.jb@gmail.com> (https://github.com/jharris4)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rspack-contrib/html-rspack-tags-plugin/issues"
},
"homepage": "https://github.com/rspack-contrib/html-rspack-tags-plugin",
"peerDependencies": {
"@rspack/core": "^1.0.13",
"html-webpack-plugin": "^5.6.0"
},
"peerDependenciesMeta": {
"html-webpack-plugin": {
"optional": true
}
},
"devDependencies": {
"cheerio": "1.0.0-rc.10",
"css-loader": "^6.2.0",
"express": "^4.17.1",
"jasmine": "^3.10.0",
"jasmine-expect": "^5.0.0",
"puppeteer": "^10.4.0",
"rimraf": "^3.0.2",
"semistandard": "^16.0.1",
"style-loader": "^3.3.1",
"@rspack/core": "^1.0.13",
"execa": "9.3.0",
"fs-extra": "11.2.0",
"semver": "7.6.3"
},
"dependencies": {
"glob": "^7.2.0",
"minimatch": "^3.0.4",
"slash": "^3.0.0"
},
"packageManager": "pnpm@9.6.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
}
}