forked from addyosmani/critical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.66 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
{
"name": "critical",
"version": "0.7.0",
"description": "Extract & Inline Critical-path CSS from HTML",
"author": "Addy Osmani",
"license": "Apache-2.0",
"repository": "addyosmani/critical",
"scripts": {
"test": "jshint . && mocha test/*.js --timeout 100000"
},
"files": [
"index.js",
"cli.js",
"lib"
],
"bin": "cli.js",
"preferGlobal": true,
"keywords": [
"critical",
"path",
"css",
"optimization"
],
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
"bluebird": "^3.0.5",
"cheerio": "^0.19.0",
"clean-css": "^3.4.8",
"cli": "^0.11.0",
"debug": "^2.2.0",
"filter-css": "^0.1.0",
"finalhandler": "^0.4.0",
"fs-extra": "^0.26.2",
"get-port": "^2.1.0",
"get-stdin": "^5.0.0",
"gulp-util": "^3.0.2",
"imageinliner": "^0.2.3",
"indent-string": "^2.1.0",
"inline-critical": "^1.0.0",
"lodash": "^3.2.0",
"meow": "^3.3.0",
"mime-types": "^2.1.6",
"object-assign": "^4.0.1",
"oust": "^0.2.3",
"parseurl": "^1.3.0",
"penthouse": "^0.8.2",
"postcss": "^5.0.5",
"postcss-image-inliner": "^0.1.1",
"request": "^2.61.0",
"serve-static": "^1.10.0",
"slash": "^1.0.0",
"tempfile": "^1.1.0",
"through2": "^2.0.0",
"tmp": "0.0.28"
},
"devDependencies": {
"async": "^1.2.1",
"chai": "^3.0.0",
"connect": "^3.4.0",
"jshint": "^2.6.0",
"mocha": "*",
"mockery": "^1.4.0",
"normalize-newline": "^1.0.2",
"read-package-json": "^2.0.0",
"serve-static": "^1.10.0",
"should": "^7.0.2",
"stream-array": "^1.0.1",
"stream-assert": "^2.0.2",
"vinyl-source-stream": "^1.0.0"
}
}