forked from uncss/grunt-uncss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "grunt-uncss",
"description": "A grunt task for generating CSS files containing only those styles used in your project.",
"version": "0.4.3",
"homepage": "https://github.com/addyosmani/grunt-uncss",
"author": "Addy Osmani <[email protected]> (http://addyosmani.com)",
"maintainers": [
"Addy Osmani <[email protected]> (http://addyosmani.com)",
"XhmikosR <[email protected]> (https://github.com/XhmikosR)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/addyosmani/grunt-uncss.git"
},
"bugs": {
"url": "https://github.com/addyosmani/grunt-uncss/issues"
},
"license": "MIT",
"keywords": [
"gruntplugin",
"uncss",
"css"
],
"files": [
"tasks",
"CHANGELOG.md",
"LICENSE-MIT"
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"chalk": "~1.1.0",
"maxmin": "~1.1.0",
"uncss": "~0.12.1"
},
"devDependencies": {
"chai": "~3.3.0",
"grunt": "~0.4.5",
"grunt-compare-size": "~0.4.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-connect": "~0.11.2",
"grunt-contrib-copy": "~0.8.0",
"grunt-contrib-cssmin": "~0.14.0",
"grunt-contrib-jshint": "~0.11.2",
"grunt-contrib-watch": "~0.6.1",
"grunt-processhtml": "~0.3.8",
"grunt-simple-mocha": "~0.4.0",
"load-grunt-tasks": "~3.3.0",
"mocha": "~2.3.2",
"time-grunt": "~1.2.1"
},
"peerDependencies": {
"grunt": ">=0.4.0"
}
}