forked from uncss/uncss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.31 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
{
"name": "uncss",
"version": "0.14.1",
"author": "Giakki",
"description": "Remove unused CSS styles",
"license": "MIT",
"homepage": "https://github.com/giakki/uncss",
"scripts": {
"test": "grunt test"
},
"main": "src/uncss.js",
"bin": {
"uncss": "bin/uncss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giakki/uncss.git"
},
"bugs": {
"url": "https://github.com/giakki/uncss/issues"
},
"keywords": [
"optimize",
"optimise",
"unused",
"selector",
"CSS",
"HTML"
],
"files": [
"bin",
"src",
"LICENSE.md"
],
"dependencies": {
"async": "^1.5.2",
"bluebird": "~3.1.5",
"commander": "~2.9.0",
"glob": "~6.0.1",
"is-absolute-url": "~2.0.0",
"is-html": "~1.0.0",
"lodash": "~4.0.1",
"object-assign": "^4.0.1",
"phridge": "~2.0.0",
"postcss": "~5.0.14",
"request": "~2.69.0"
},
"devDependencies": {
"chai": "~3.5.0",
"chai-resemble": "~0.4.1",
"grunt": "~0.4.5",
"grunt-eslint": "^18.0.0",
"grunt-mocha-cov": "~0.4.0",
"load-grunt-tasks": "~3.4.0",
"time-grunt": "~1.3.0"
},
"engines": {
"node": ">= 0.12.0"
},
"config": {
"blanket": {
"pattern": [
"src/lib.js",
"src/uncss.js",
"src/utility.js"
]
}
}
}