forked from addyosmani/critical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.74 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
73
74
75
76
77
78
79
{
"name": "critical",
"version": "1.3.3",
"description": "Extract & Inline Critical-path CSS from HTML",
"author": "Addy Osmani",
"license": "Apache-2.0",
"repository": "addyosmani/critical",
"scripts": {
"test": "xo && mocha test/*.js --timeout 100000",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"files": [
"cli.js",
"index.js",
"lib"
],
"bin": "cli.js",
"keywords": [
"critical",
"path",
"css",
"optimization"
],
"engines": {
"node": ">=6.4.0"
},
"dependencies": {
"async-exit-hook": "^2.0.1",
"bluebird": "^3.5.1",
"chalk": "^2.3.0",
"clean-css": "^4.1.9",
"debug": "3.1.0",
"filter-css": "^0.1.2",
"fs-extra": "^6.0.1",
"get-port": "^3.2.0",
"get-stdin": "^6.0.0",
"got": "^8.3.0",
"group-args": "^0.1.0",
"indent-string": "^3.2.0",
"inline-critical": "^4.0.0",
"lodash": "^4.17.21",
"meow": "^5.0.0",
"mime-types": "^2.1.17",
"oust": "^0.5.0",
"penthouse": "1.11.1",
"plugin-error": "^1.0.1",
"postcss": "^6.0.17",
"postcss-image-inliner": "^4.0.1",
"replace-ext": "^1.0.0",
"slash": "^2.0.0",
"tempy": "^0.2.1",
"through2": "^2.0.3",
"vinyl": "^2.1.0",
"snyk": "^1.88.0"
},
"devDependencies": {
"async": "^2.6.0",
"chai": "^4.1.2",
"finalhandler": "^1.1.0",
"mocha": "5.2.0",
"mockery": "^2.1.0",
"normalize-newline": "^3.0.0",
"nsp": "^3.1.0",
"read-package-json": "^2.0.12",
"serve-static": "^1.13.1",
"stream-array": "^1.1.2",
"stream-assert": "^2.0.3",
"vinyl-source-stream": "^2.0.0",
"xo": "0.21.1"
},
"xo": {
"space": 4,
"rules": {
"valid-jsdoc": "off"
}
},
"snyk": true
}