This repository has been archived by the owner on Feb 25, 2018. It is now read-only.
forked from chrisgladd/grunt-phantomcss
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
74 lines (74 loc) · 1.63 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
69
70
71
72
73
74
{
"name": "grunt-phantomcss",
"description": "Plugin to do CSS regression testing via PhantomCSS.",
"version": "0.3.2",
"homepage": "https://github.com/anselmh/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"
},
{
"name": "Anselm Hannemann",
"email": "[email protected]",
"url": "http://helloanselm.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/anselmh/grunt-phantomcss.git"
},
"bugs": {
"url": "https://github.com/anselmh/grunt-phantomcss/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/anselmh/grunt-phantomcss/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test",
"postinstall": "bower install"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.1",
"jit-grunt": "^0.8.0",
"path": "^0.4.9",
"time-grunt": "^0.4.0"
},
"dependencies": {
"bower": "^1.3.9",
"temporary": "0.0.8",
"phantomjs": "^1.9.7-15"
},
"peerDependencies": {
"phantomjs": "1.9.7-14"
},
"keywords": [
"gruntplugin",
"phantomcss",
"css",
"regression",
"test",
"phantomjs",
"grunt"
]
}