-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "argus-eyes",
"version": "0.6.0",
"description": "A lightweight commandline tool for visual regression testing of UI components.",
"main": "bin/argus-eyes.js",
"bin": {
"argus-eyes": "bin/argus-eyes.js"
},
"scripts": {
"test": "node tests/runner.js"
},
"preferGlobal": true,
"engines": {
"node": ">=4.0"
},
"engine-strict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/arguseyes/argus-eyes.git"
},
"keywords": [
"visual regression",
"visual",
"regression",
"testing",
"phantomjs",
"phantomcss"
],
"contributors": [
"Bran van der Meer <[email protected]> (http://bran.name/)",
"Maarten Groeneweg <[email protected]> (http://www.lazytesting.com/)",
"Christiaan Stegeman <[email protected]>"
],
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/arguseyes/argus-eyes/issues"
},
"homepage": "http://arguseyes.io/",
"dependencies": {
"async": "^2.0.0-rc.5",
"blink-diff": "^1.0.12",
"chalk": "^1.1.1",
"glob": "^7.0.3",
"image-size": "^0.5.0",
"mkdirp": "^0.5.1",
"phantomjs-prebuilt": "^2.1.4",
"rimraf": "^2.5.0",
"yargs": "^4.7.1"
},
"devDependencies": {
"basic-auth": "^1.0.4",
"connect": "^3.4.1",
"mocha": "^2.5.1"
}
}