forked from localyost3000/html-webpack-link-type-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.53 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
{
"name": "html-webpack-link-type-plugin",
"version": "1.0.4",
"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.1.7",
"@types/mocha": "5.2.6",
"@types/node": "8.10.29",
"@types/rimraf": "2.0.2",
"@types/webpack": "4.4.31",
"chai": "4.2.0",
"css-loader": "1.0.0",
"html-webpack-plugin": ">=3.2.0 || 4.0.0-beta.1 || 4.0.0-beta.2 || 4.0.0-beta.4 || 4.0.0-beta.5",
"mini-css-extract-plugin": "0.6.0",
"mocha": "6.1.4",
"rimraf": "2.6.3",
"ts-node": "8.1.0",
"typescript": "3.4.5",
"webpack": ">=3.0.0"
},
"dependencies": {
"minimatch": "3.0.4"
},
"peerDependencies": {
"html-webpack-plugin": ">=3.0.0 || 4.0.0-beta.1 || 4.0.0-beta.2 || 4.0.0-beta.4 || 4.0.0-beta.5",
"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"
}