-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1006 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1006 Bytes
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
{
"name": "magic-visual-regression",
"version": "0.1.6",
"description": "A Simple tool for Visual Regression testing",
"main": "index.js",
"bin": {
"magic-visual-regression": "./index.js"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"engines": {
"node": ">=7.3.0"
},
"author": "Anenth <anenthvishnu@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"fs-extra": "^1.0.0",
"minimist": "^1.2.0",
"node-resemble-js": "^0.2.0",
"stream-to-promise": "^2.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Anenth/Magic-Visual-Regression.git"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}