forked from americanexpress/jest-image-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.53 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
{
"name": "jest-image-snapshot",
"version": "2.11.0",
"description": "Jest matcher for image comparisons. Most commonly used for visual regression testing.",
"main": "src/index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint ./ --ignore-path .gitignore --ext .js",
"test": "jest --ci=false",
"posttest": "npm run lint"
},
"keywords": [
"test",
"amex",
"visual testing",
"css",
"jest",
"browser testing"
],
"jest": {
"preset": "amex-jest-preset",
"collectCoverageFrom": [
"src/*.js",
"!src/diff-process.js",
"!**/node_modules/**",
"!test-results/**"
],
"testMatch": [
"<rootDir>/__tests__/**/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/examples"
]
},
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/jest-image-snapshot.git"
},
"author": "Andres Escobar <andres.escobar@aexp.com> (https://github.com/anescobar1991)",
"license": "Apache-2.0",
"devDependencies": {
"amex-jest-preset": "^5.0.0",
"eslint": "^4.15.0",
"eslint-config-amex": "^7.0.0",
"image-size": "^0.7.1",
"jest": "^24.0.0",
"mock-spawn": "^0.2.6",
"jest-snapshot": "^23.0.0"
},
"dependencies": {
"chalk": "^1.1.3",
"get-stdin": "^5.0.1",
"glur": "^1.1.2",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"pixelmatch": "^4.0.2",
"pngjs": "^3.3.3",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"jest": ">=20 <=24"
}
}