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
62 lines (62 loc) · 1.95 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
{
"name": "html-webpack-externals-plugin",
"version": "3.4.0",
"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": {
"precommit": "lint-staged",
"test": "mocha --require babel-register",
"build": "rm -rf lib && babel src --out-dir lib --source-maps --copy-files",
"watch": "npm run build -- --watch"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write --no-semi --single-quote --trailing-comma es5 '{src/**/*.{js,json},test/**/*.js,*.json}'",
"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.0.2",
"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.0",
"babel-register": "^6.24.1",
"bootstrap": "^3.3.7",
"css-loader": "^0.28.4",
"escape-string-regexp": "^1.0.5",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.0.0",
"husky": "^0.14.3",
"jquery": "^3.2.1",
"lint-staged": "^4.0.2",
"mocha": "^3.4.2",
"prettier": "^1.5.3",
"rimraf": "^2.6.1",
"webpack": "^3.3.0"
},
"peerDependencies": {
"html-webpack-plugin": "^2.0.0"
},
"dependencies": {
"ajv": "^5.2.2",
"copy-webpack-plugin": "^4.0.1",
"html-webpack-include-assets-plugin": "0.0.7"
}
}