-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
102 lines (102 loc) · 2.56 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "cypress-image-diff-js",
"version": "0.0.0",
"description": "Visual regression testing tool with cypress",
"main": "./dist/command.js",
"types": "./types/command.d.ts",
"exports": {
"./dist/config.default": {
"default": "./dist/config.default.js"
},
".": {
"types": "./types/command.d.ts",
"default": "./dist/command.js"
},
"./command": {
"types": "./types/command.d.ts",
"default": "./dist/command.js"
},
"./plugin": {
"types": "./types/plugin.d.ts",
"default": "./dist/plugin.js"
}
},
"files": ["dist", "types"],
"bin": {
"cypress-image-diff": "./bin/cypress-image-diff.js"
},
"scripts": {
"lint": "eslint src/ cypress/",
"test:unit": "jest src/",
"test:e2e": "npm run build && cypress run --browser chrome --headless",
"build": "npx babel src -d dist && cp src/reporter/template.hbs dist/reporter/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uktrade/cypress-image-diff.git"
},
"release": {
"branches": [
"main"
]
},
"keywords": [
"cypress",
"visual",
"testing",
"visual",
"regression",
"image",
"comparison"
],
"author": "Filippo Raimondi",
"license": "MIT",
"bugs": {
"url": "https://github.com/uktrade/cypress-image-diff/issues"
},
"homepage": "https://github.com/uktrade/cypress-image-diff#readme",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@colors/colors": "^1.5.0",
"arg": "^4.1.1",
"cypress-recurse": "^1.13.1",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"pixelmatch": "^5.1.0",
"pngjs": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^7.2.3",
"babel-jest": "^27.2.2",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"cypress": "^10.8.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.0.6",
"prettier": "^2.1.2",
"semantic-release": "^19.0.2"
},
"peerDependencies": {
"cypress": ">=9.6.1"
},
"resolutions": {
"y18n": ">=4.0.1",
"lodash": ">=4.17.21",
"hosted-git-info": ">=2.8.9",
"browserslist": ">=4.16.5",
"ws": ">=7.4.6",
"path-parse": ">=1.0.7",
"trim-off-newlines": ">=1.0.1",
"set-value": ">=4.0.1",
"tmpl": ">=1.0.5",
"minimist": ">=1.2.6"
}
}