-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
executable file
·74 lines (74 loc) · 1.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "html-webpack-tags-plugin",
"version": "3.0.2",
"description": "lets you define html tags to inject with html-webpack-plugin",
"main": "index.js",
"types": "typings.d.ts",
"engines": {
"node": ">=10"
},
"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"
},
"semistandard": {
"ignore": [
"spec/**/*-bundle.js",
"spec/dist/**"
]
},
"unmockedModulePathPatterns": [
"jasmine-expect"
],
"repository": {
"type": "git",
"url": "https://github.com/jharris4/html-webpack-tags-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"html",
"tags",
"inject",
"include",
"assets"
],
"author": "Jon Harris <[email protected]> (https://github.com/jharris4)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jharris4/html-webpack-tags-plugin/issues"
},
"homepage": "https://github.com/jharris4/html-webpack-tags-plugin",
"peerDependencies": {
"html-webpack-plugin": "^5.0.0",
"webpack": "^5.0.0"
},
"devDependencies": {
"cheerio": "1.0.0-rc.10",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"express": "^4.17.1",
"html-webpack-plugin": "^5.5.0",
"jasmine": "^3.10.0",
"jasmine-expect": "^5.0.0",
"mini-css-extract-plugin": "^2.4.3",
"puppeteer": "^10.4.0",
"rimraf": "^3.0.2",
"semistandard": "^16.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.61.0"
},
"dependencies": {
"glob": "^7.2.0",
"minimatch": "^3.0.4",
"slash": "^3.0.0"
}
}