-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.15 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": "critical-plugin",
"version": "1.0.5",
"description": "critical plugin for webpack extracts & inlines critical-path (above-the-fold) CSS from HTML",
"author": "Shlomi Levi (https://github.com/wizardnet972)",
"license": "MIT",
"main": "dist/index.js",
"private": false,
"bugs": "https://github.com/wizardnet972/critical-plugin/issues",
"homepage": "https://github.com/wizardnet972/critical-plugin",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"start": "npm run build -- -w",
"test": "jest",
"test:watch": "jest --watch",
"prepublish": "npm run build",
"release": "standard-version",
"security": "nsp check",
"travis:test": "npm run test -- --runInBand",
"travis:lint": "npm run lint && npm run security",
"lint": "eslint --cache src test",
"lint-staged": "lint-staged"
},
"files": [
"dist"
],
"peerDependencies": {
"webpack": "^4.1.0"
},
"engines": {
"node": ">= 6.9.0 <7.0.0 || >= 8.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wizardnet972/critical-plugin.git"
},
"keywords": [
"critical",
"critical-plugin",
"webpack",
"plugin",
"inline",
"css"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.1.5",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"lint-staged": "^6.1.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3"
},
"dependencies": {
"chalk": "^2.4.1",
"critical": "^1.3.0"
}
}