forked from addyosmani/critical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.64 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
{
"name": "critical",
"version": "0.8.4",
"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"
},
"files": [
"cli.js",
"index.js",
"lib"
],
"bin": "cli.js",
"preferGlobal": true,
"keywords": [
"critical",
"path",
"css",
"optimization"
],
"engines": {
"node": ">=4.0"
},
"dependencies": {
"bluebird": "^3.4.7",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"clean-css": "^4.0.6",
"cli": "^1.0.1",
"debug": "^2.6.1",
"filter-css": "^0.1.2",
"finalhandler": "^0.5.1",
"fs-extra": "^2.0.0",
"get-port": "^2.1.0",
"get-stdin": "^5.0.1",
"gulp-util": "^3.0.8",
"imageinliner": "^0.2.4",
"indent-string": "^3.1.0",
"inline-critical": "^2.4.0",
"lodash": "^4.17.4",
"meow": "^3.7.0",
"mime-types": "^2.1.14",
"oust": "^0.3.0",
"parseurl": "^1.3.1",
"penthouse": "^0.10.9",
"postcss": "^5.2.12",
"postcss-image-inliner": "^1.0.4",
"request": "^2.79.0",
"serve-static": "^1.11.2",
"slash": "^1.0.0",
"tempfile": "^1.1.1",
"through2": "^2.0.3",
"tmp": "^0.0.31",
"vinyl": "^2.0.1"
},
"devDependencies": {
"async": "^2.1.4",
"chai": "^3.5.0",
"connect": "^3.5.0",
"mocha": "^3.2.0",
"mockery": "^2.0.0",
"normalize-newline": "^3.0.0",
"read-package-json": "^2.0.4",
"stream-array": "^1.1.2",
"stream-assert": "^2.0.3",
"vinyl-source-stream": "^1.1.0",
"xo": "^0.17.1"
},
"xo": {
"space": 4
}
}