forked from addyosmani/critical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.06 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "critical",
"version": "2.0.0-23",
"description": "Extract & Inline Critical-path CSS from HTML",
"author": "Addy Osmani",
"license": "Apache-2.0",
"repository": "addyosmani/critical",
"scripts": {
"jest": "jest --coverage",
"xo": "xo",
"test": "npm run xo && npm run jest"
},
"files": [
"cli.js",
"index.js",
"src"
],
"bin": "cli.js",
"keywords": [
"critical",
"path",
"css",
"optimization"
],
"engines": {
"node": ">=8.10.0"
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"chalk": "^3.0.0",
"clean-css": "^4.2.1",
"common-tags": "^1.8.0",
"css-url-parser": "^1.1.3",
"debug": "^4.1.1",
"find-up": "^4.1.0",
"fs-extra": "^8.1.0",
"get-stdin": "^7.0.0",
"globby": "^9.2.0",
"got": "^9.6.0",
"group-args": "^0.1.0",
"indent-string": "^4.0.0",
"inline-critical": "^5.3.1",
"is-glob": "^4.0.1",
"lodash": "^4.17.15",
"meow": "^5.0.0",
"oust": "^1.0.0",
"p-all": "^2.1.0",
"penthouse": "^2.2.2",
"plugin-error": "^1.0.1",
"postcss": "^7.0.23",
"postcss-discard": "^0.3.3",
"postcss-image-inliner": "^3.0.9",
"postcss-url": "^8.0.0",
"prettier": "^1.19.1",
"replace-ext": "^1.0.0",
"slash": "^3.0.0",
"tempy": "^0.3.0",
"through2": "^3.0.1",
"vinyl": "^2.2.0"
},
"devDependencies": {
"async": "^3.1.0",
"finalhandler": "^1.1.2",
"get-port": "^5.0.0",
"jest": "^24.9.0",
"nock": "^11.7.0",
"normalize-newline": "^3.0.0",
"serve-static": "^1.14.1",
"stream-array": "^1.1.2",
"stream-assert": "^2.0.3",
"vinyl-source-stream": "^2.0.0",
"xo": "^0.25.3"
},
"xo": {
"space": 2,
"prettier": true,
"rules": {
"capitalized-comments": "off"
},
"overrides": [
{
"files": "test/*.js",
"envs": [
"jest"
]
}
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": false
},
"jest": {
"roots": [
""
]
}
}