-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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
{
"name": "css-chunks-html-webpack-plugin",
"version": "1.0.1",
"description":
"Injecting css chunks extracted using extract-css-chunks-webpack-plugin to HTML for html-webpack-plugin Edit",
"main": "lib/index.js",
"author": "Michael Manukyan <michael@teamable.com> (https://github.com/mike1808)",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"babel-loader": "^8.0.0-beta.2",
"babel-plugin-dual-import": "^1.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"html-webpack-plugin": "3.1.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"mini-css-extract-plugin": "^0.4.0",
"prettier": "1.12.1",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
},
"peerDependencies": {
"webpack": "^4.0.0"
},
"scripts": {
"fix": "eslint --ext js --fix lib,examples",
"test": "jest lib",
"precommit": "lint-staged && npm test",
"format": "prettier --write 'lib/**/*.{js,json,css,md}'"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"jest": {
"clearMocks": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamable-software/css-chunks-html-webpack-plugin.git"
},
"keywords": ["webpack", "plugin", "html", "html-webpack-plugin", "css-chunks", "code-splitting"],
"license": "MIT",
"bugs": {
"url": "https://github.com/teamable-software/css-chunks-html-webpack-plugin/issues"
},
"homepage": "https://github.com/teamable-software/css-chunks-html-webpack-plugin#readme"
}