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
72 lines (72 loc) · 2.17 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
71
72
{
"name": "html-webpack-externals-plugin",
"version": "3.5.1",
"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",
"build:scripts": "rm -rf .circleci/lib && babel .circleci/scripts --out-dir .circleci/lib --source-maps",
"watch": "npm run build -- --watch"
},
"lint-staged": {
"{src,test,.circleci/scripts}.{js,json}": [
"prettier --write --no-semi --single-quote --trailing-comma es5",
"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-polyfill": "^6.26.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",
"github": "^11.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",
"mustache": "^2.3.0",
"prettier": "^1.5.3",
"rimraf": "^2.6.1",
"semver-sort": "0.0.4",
"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": "^1.0.0"
}
}