forked from uncss/uncss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.22 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.22 KB
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
{
"name": "uncss",
"version": "0.9.0",
"author": "Giakki",
"description": "Remove unused CSS styles",
"license": "MIT",
"homepage": "https://github.com/giakki/uncss",
"directories": {
"test": "tests"
},
"scripts": {
"test": "grunt test"
},
"main": "lib/uncss.js",
"bin": {
"uncss": "bin/uncss"
},
"repository": {
"type": "git",
"url": "https://github.com/giakki/uncss.git"
},
"bugs": {
"url": "https://github.com/giakki/uncss/issues"
},
"keywords": [
"optimize",
"optimise",
"unused",
"selector",
"CSS",
"HTML"
],
"files": [
"bin",
"lib",
"LICENSE.md",
"README.md"
],
"dependencies": {
"async": "~0.9.0",
"commander": "~2.3.0",
"css": "~2.1.0",
"phantomjs": "~1.9.10",
"node-phantom-simple": "~1.2.0",
"request": "~2.44.0",
"underscore": "~1.7.0"
},
"devDependencies": {
"chai": "~1.9.1",
"chai-resemble": "~0.3.2",
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.10.0",
"grunt-mocha-cov": "~0.3.0",
"time-grunt": "~1.0.0"
},
"engines": {
"node": ">= 0.10.0"
},
"config": {
"blanket": {
"pattern": [
"lib/uncss.js",
"lib/lib.js"
]
}
}
}