-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
43 lines (43 loc) · 1.1 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
{
"author": "Øyvind Håkestad <[email protected]> (https://github.com/oyvindeh)",
"contributors": [
"Chris Adams <[email protected]> (https://github.com/acdha)",
"Hans S. Tømmerholt <[email protected]> (https://github.com/hanssto)",
"Crow Norlander <[email protected]> (https://github.com/crowjonah)"
],
"name": "ucss",
"description": "Find unused CSS rules",
"version": "0.5.0",
"homepage": "https://github.com/oyvindeh/ucss",
"repository": {
"type": "git",
"url": "[email protected]:oyvindeh/ucss"
},
"main": "./lib/ucss.js",
"bin": {
"ucss": "bin/ucss.bin.js"
},
"keywords": [
"css",
"unused"
],
"dependencies": {
"optimist": "0.6.x",
"async": "2.1.x",
"cssom": "0.3.x",
"cheerio": "0.22.x",
"request": "2.75.x",
"q": "1.4.x"
},
"devDependencies": {
"buster": "0.7.x",
"sinon": "1.17.x"
},
"license": "BSD",
"engines": {
"node": ">=0.6"
},
"scripts": {
"test": "node run-tests.js"
}
}