-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "webpack-nomodule-plugin",
"version": "1.2.1",
"description": "a plugin for html-webpack-plugin to label certain chunks as legacy-only via the nomodule attribute",
"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",
"nomodule",
"polyfills",
"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",
"html-webpack-plugin": ">=3.2.0",
"mocha": "8.2.1",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"typescript": "4.1.3",
"webpack": ">=3.0.0"
},
"dependencies": {
"minimatch": "~3.0.4"
},
"peerDependencies": {
"html-webpack-plugin": ">=3.0.0",
"webpack": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swimmadude66/webpack-nomodule-plugin.git"
},
"bugs": {
"url": "https://github.com/swimmadude66/webpack-nomodule-plugin/issues"
},
"homepage": "https://github.com/swimmadude66/webpack-nomodule-plugin#readme"
}