forked from garris/BackstopJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.73 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
{
"name": "backstopjs",
"version": "2.6.14",
"description": "BackstopJS: Catch CSS curveballs.",
"bin": {
"backstop": "./cli/index.js"
},
"scripts": {
"lint": "npm run lint-web && npm run lint-node",
"lint-web": "eslint --env browser compare/*.js compare/**/*.js --fix",
"lint-node": "eslint --env node core/*.js core/**/*.js cli/*.js cli/**/*.js capture/*.js capture/**/*.js --fix",
"genConfig": "node ./cli/index.js genConfig",
"reference": "node ./cli/index.js reference",
"test": "node ./cli/index.js test",
"openReport": "node ./cli/index.js openReport",
"echo": "node ./cli/index.js echo",
"unit-test": "mocha --reporter spec --recursive test/",
"integration-test": "rm -rf newdir && mkdir newdir && cd newdir && node ../cli/index.js genConfig && node ../cli/index.js reference && node ../cli/index.js test && node -e \"require('../')('test')\""
},
"repository": {
"type": "git",
"url": "https://github.com/garris/backstopjs.git"
},
"author": "https://github.com/garris/BackstopJS/graphs/contributors",
"license": "MIT",
"main": "core/runner.js",
"devDependencies": {
"assert": "^1.4.1",
"eslint": "^3.3.0",
"eslint-config-semistandard": "^7.0.0-beta.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^1.21.5",
"mockery": "^1.4.0"
},
"dependencies": {
"casperjs": "^1.1.0-beta5",
"chalk": "^1.1.3",
"fs-extra": "^0.30.0",
"junitwriter": "~0.3.1",
"minimist": "^1.2.0",
"node-resemble-js": "^0.2.0",
"object-hash": "1.1.5",
"open": "0.0.5",
"os": "^0.1.1",
"p-map": "^1.1.1",
"phantomjs-prebuilt": "^2.1.7",
"temp": "^0.8.3"
}
}