forked from uncss/grunt-uncss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "grunt-uncss",
"description": "A grunt task for generating CSS files containing only those styles used in your project.",
"version": "0.2.2",
"homepage": "https://github.com/addyosmani/grunt-uncss",
"author": "Addy Osmani <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/addyosmani/grunt-uncss.git"
},
"bugs": {
"url": "https://github.com/addyosmani/grunt-uncss/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/addyosmani/grunt-uncss/blob/master/LICENSE-MIT"
},
"keywords": [
"gruntplugin",
"uncss",
"css"
],
"files": [
"changelog.md",
"LICENSE-MIT",
"tasks"
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"peerDependencies": {
"grunt": "~0.4.1"
},
"dependencies": {
"chalk": "~0.4.0",
"maxmin": "~0.1.0",
"uncss": "~0.7.9",
"underscore": "~1.6.0"
},
"devDependencies": {
"chai": "~1.9.0",
"grunt": "~0.4.3",
"grunt-compare-size": "~0.4.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-connect": "~0.7.1",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-processhtml": "~0.3.0",
"grunt-simple-mocha": "~0.4.0",
"load-grunt-tasks": "~0.4.0",
"mocha": "~1.17.1",
"time-grunt": "~0.2.10"
},
"directories": {
"test": "tests"
}
}