-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "html-webpack-link-type-plugin",
"version": "1.1.1",
"description": "a plugin for html-webpack-plugin to allow for mimetype tagging of injected links",
"main": "dist/plugin.js",
"scripts": {
"test": "mocha -r ts-node/register spec/**/*.spec.ts --exit",
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"html-webpack-plugin",
"mimetype",
"webpack",
"plugin"
],
"author": "swimmadude66",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@types/node": "12.19.15",
"chai": "4.2.0",
"css-loader": "5.0.1",
"extract-text-webpack-plugin": "3.0.2",
"html-webpack-plugin": ">=3.2.0",
"mini-css-extract-plugin": "1.3.5",
"mocha": "8.2.1",
"rimraf": "3.0.2",
"style-loader": "3.3.0",
"ts-node": "9.1.1",
"typescript": "4.1.3",
"webpack": ">=3.0.0"
},
"dependencies": {
"minimatch": "^5.1.4"
},
"peerDependencies": {
"html-webpack-plugin": ">=3.0.0",
"webpack": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swimmadude66/html-webpack-link-type-plugin.git"
},
"bugs": {
"url": "https://github.com/swimmadude66/html-webpack-link-type-plugin/issues"
},
"homepage": "https://github.com/swimmadude66/html-webpack-link-type-plugin#readme"
}