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
68 lines (68 loc) · 1.28 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.28 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
68
{
"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": "^2.0.1",
"bluebird": "^3.4.0",
"commander": "^2.9.0",
"glob": "^7.0.3",
"is-absolute-url": "^2.0.0",
"is-html": "^1.0.0",
"lodash": "^4.13.1",
"phridge": "^2.0.0",
"postcss": "^5.0.21",
"request": "^2.72.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-resemble": "^0.4.1",
"grunt": "^0.4.5",
"grunt-eslint": "^19.0.0",
"grunt-mocha-cov": "^0.4.0",
"load-grunt-tasks": "^3.5.0",
"time-grunt": "^1.3.0"
},
"engines": {
"node": ">=4.0"
},
"config": {
"blanket": {
"pattern": [
"src/lib.js",
"src/uncss.js",
"src/utility.js"
]
}
}
}