-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
{
"name": "whoopsie",
"version": "1.3.1",
"description": "Whoopsie is a visual regression tool for testing responsive web sites",
"main": "src/index.js",
"bin": "./bin/whoopsie.js",
"scripts": {
"test": "npm run lint && npm run jasmine",
"lint": "eslint --fix \"src/**/*.js\" \"spec/**/*.js\"",
"jasmine": "if [ -z $TRAVIS_JOB_ID ]; then nyc --all --exclude \"spec/**\" jasmine; else npm run jasmine-coveralls; fi",
"jasmine-coveralls": "nyc --all --exclude \"spec/**\" --reporter=lcov jasmine && cat ./coverage/lcov.info | coveralls",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wildlyinaccurate/whoopsie.git"
},
"keywords": [
"visual",
"regression",
"wraith"
],
"author": "Joseph Wynn <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/wildlyinaccurate/whoopsie/issues"
},
"homepage": "https://github.com/wildlyinaccurate/whoopsie#readme",
"dependencies": {
"cartesian-product": "^2.1.2",
"fs-extra": "^11.1.1",
"image-diff": "^2.0.0",
"js-yaml": "^3.6.1",
"lodash": "^4.13.1",
"log": "^1.4.0",
"minimist": "^1.2.0",
"mkdirp": "^3.0.1",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"puppeteer": "^20.7.3",
"queue": "^4.0.0",
"snyk": "^1.234.0",
"validate": "^3.0.1"
},
"devDependencies": {
"coveralls": "^2.11.9",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"nyc": "^11.1.0",
"prettier": "^2.8.8",
"proxyquire": "^1.7.9"
},
"snyk": true
}