This repository has been archived by the owner on Dec 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
68 lines (68 loc) · 1.49 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
63
64
65
66
67
68
{
"name": "grunt-phantomcss",
"description": "Plugin to do CSS regression testing via PhantomCSS.",
"version": "0.3.0",
"homepage": "https://github.com/chrisgladd/grunt-phantomcss",
"author": {
"name": "Chris Gladd",
"email": "[email protected]"
},
"contributors": [
{
"name": "Larry Davis",
"email": "[email protected]",
"url": "https://github.com/lazd"
},
{
"name": "Aliaksei Sapach",
"email": "[email protected]",
"url": "https://github.com/asapach"
}
],
"repository": {
"type": "git",
"url": "git://github.com/chrisgladd/grunt-phantomcss.git"
},
"bugs": {
"url": "https://github.com/chrisgladd/grunt-phantomcss/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/chrisgladd/grunt-phantomcss/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test",
"postinstall": "bower install"
},
"devDependencies": {
"grunt": ">=0.4.5",
"grunt-contrib-clean": "^0.4.1",
"grunt-contrib-jshint": "^0.6.5",
"grunt-contrib-nodeunit": "^0.2.2",
"phantomjs-prebuilt": "~2.1.3"
},
"dependencies": {
"bower": "~1.7.6",
"phantomcss": "^1.0.0",
"tmp": "0.0.28"
},
"peerDependencies": {
"phantomjs-prebuilt": "~2.1.3",
"grunt": ">=0.4.5"
},
"keywords": [
"gruntplugin",
"phantomcss",
"css",
"regression",
"test",
"phantomjs",
"grunt"
]
}