This repository has been archived by the owner on Apr 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
70 lines (70 loc) · 2.14 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
{
"name": "html-webpack-externals-plugin",
"version": "3.8.1-cwp-patch",
"description": "Webpack plugin that works alongside html-webpack-plugin to use pre-packaged vendor bundles.",
"keywords": [
"htmlwebpackplugin",
"webpack",
"html",
"externals"
],
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib --source-maps --copy-files",
"postpublish": "create-github-release $TAG",
"precommit": "lint-staged",
"prettier": "prettier --write 'src/**/*.{js,json}'",
"test": "mocha --require babel-register",
"watch": "npm run build -- --watch"
},
"lint-staged": {
"{{src,test}/*.{js,json}},*.js": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=4.3.0 <5.0.0 || >=5.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmiller42/html-webpack-externals-plugin.git"
},
"author": "Matt Miller <me@mmiller.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmiller42/html-webpack-externals-plugin/issues"
},
"homepage": "https://github.com/mmiller42/html-webpack-externals-plugin#readme",
"devDependencies": {
"assertion-error": "^1.1.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.24.1",
"bootstrap": "^4.0.0",
"create-github-release": "^1.4.1",
"css-loader": "^0.28.9",
"escape-string-regexp": "^1.0.5",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.0.0",
"husky": "^0.14.3",
"jquery": "^3.3.1",
"lint-staged": "^6.1.1",
"mocha": "^5.0.1",
"prettier": "^1.10.2",
"rimraf": "^2.6.1",
"webpack": "^3.11.0"
},
"peerDependencies": {
"html-webpack-plugin": "^2.0.0"
},
"dependencies": {
"ajv": "^6.1.1",
"copy-webpack-plugin": "git://github.com/mmiller42/copy-webpack-plugin.git#cde916a4f46cccc0047732834f2a58d73d9af9fc",
"html-webpack-include-assets-plugin": "^1.0.2"
}
}