forked from nrwl/webpack-plugin-critical
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "html-critical-webpack-plugin",
"version": "2.0.0",
"description": "Webpack plugin for the critical CSS inliner library.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/anthonygore/html-critical-webpack-plugin.git"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"webpack",
"critical"
],
"author": "anthonygore",
"license": "MIT",
"bugs": {
"url": "https://github.com/anthonygore/html-critical-webpack-plugin/issues"
},
"homepage": "https://github.com/anthonygore/html-critical-webpack-plugin#readme",
"scripts": {
"clean": "rimraf ./dist && rimraf ./test/cases/**/build",
"build": "npm run clean && npm run lint && webpack --config ./webpack.config.js",
"lint": "eslint *.js test/**/*.js",
"test": "npm run clean && mocha ./test/**/*.spec.js --timeout 5000"
},
"dependencies": {
"critical": "^1.0.0"
},
"files": [
"README.md",
"index.js"
],
"devDependencies": {
"css-loader": "^0.28.10",
"eslint": "^4.19.1",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^11.6.2",
"mini-css-extract-plugin": "^0.4.0",
"mocha": "^5.0.1",
"rimraf": "^2.6.2",
"webpack": "^4.8.2",
"webpack-cli": "^2.0.11"
}
}