forked from FRSOURCE/cypress-plugin-visual-regression-diff
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
141 lines (141 loc) · 4.18 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@frsource/cypress-plugin-visual-regression-diff",
"description": "Perform visual regression test with a nice GUI as help. 💅 Only for Cypress!",
"version": "3.1.1",
"author": "Jakub Freisler <[email protected]>",
"homepage": "https://github.com/braze-inc/cypress-plugin-visual-regression-diff",
"repository": "https://github.com/braze-inc/cypress-plugin-visual-regression-diff.git",
"sideEffects": [
"./dist/**"
],
"main": "dist/support.js",
"types": "dist/support.d.ts",
"exports": {
".": {
"types": "./dist/support.d.ts",
"import": "./dist/support.mjs",
"default": "./dist/support.js"
},
"./support": {
"types": "./dist/support.d.ts",
"import": "./dist/support.mjs",
"default": "./dist/support.js"
},
"./plugins": {
"types": "./dist/plugins.d.ts",
"import": "./dist/plugins.mjs",
"default": "./dist/plugins.js"
},
"./constants": {
"types": "./dist/constants.d.ts",
"import": "./dist/constants.mjs",
"default": "./dist/constants.js"
},
"./*": "./*.js"
},
"typesVersions": {
"*": {
"support": [
"dist/support.d.ts"
],
"plugins": [
"dist/plugins.d.ts"
],
"constants": [
"dist/constants.d.ts"
]
}
},
"license": "MIT",
"scripts": {
"build": "del-cli dist && microbundle src/{support,plugins,constants}.ts --target node --tsconfig tsconfig.build.json -f cjs,modern && cpy 'dist/src/*' dist && del-cli dist/src \"dist/*.{hook,utils}.d.ts\"",
"lint": "eslint '**/*.ts' --ignore-pattern '**/*.d.ts'",
"lint:fix": "yarn lint --fix",
"lint:ci": "yarn lint --max-warnings 0",
"prettify": "prettier --write .",
"prettify:ci": "prettier --check .",
"prepack": "yarn build",
"release": "semantic-release",
"release:ci": "yarn release --yes --skip-npm",
"release:test": "yarn release --no-git-tag-version --no-push --skip-npm",
"test": "cd example && yarn test:ct:ci && yarn test:e2e:ci && yarn test:integration:ci",
"test:integration": "vitest run",
"test:integration:watch": "vitest",
"test:integration:coverage": "vitest run --coverage",
"test:integration:ci": "CI=true vitest run --coverage",
"test:ct": "cd example && yarn test:ct",
"test:ct:ci": "cd example && yarn test:ct:ci",
"test:e2e": "cd example && yarn test:e2e",
"test:e2e:ci": "cd example && yarn test:e2e:ci"
},
"engines": {
"node": ">=10"
},
"packageManager": "[email protected]",
"peerDependencies": {
"cypress": ">=4.5.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.6",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/glob": "8.0.0",
"@types/pixelmatch": "5.2.4",
"@types/pngjs": "6.0.1",
"@types/sharp": "0.31.0",
"@types/tmp": "0.2.3",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"@vitest/coverage-c8": "0.24.5",
"cpy-cli": "^4.2.0",
"cypress": "10.11.0",
"del-cli": "5.0.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-eslint-comments": "3.2.0",
"microbundle": "0.15.1",
"prettier": "2.7.1",
"sanitize-filename": "1.6.3",
"semantic-release": "19.0.5",
"tmp-promise": "3.0.3",
"typescript": "4.8.4",
"vite-tsconfig-paths": "3.5.2",
"vitest": "0.24.5"
},
"keywords": [
"Cypress",
"Cypress plugin",
"visual regression testing",
"visual diff",
"image diff",
"visual comparison",
"image comparison",
"Cypress visual regression",
"regression testing",
"visual snapshot",
"image snapshot",
"Cypress image snapshot"
],
"dependencies": {
"@frsource/base64": "1.0.4",
"glob": "8.0.3",
"meta-png": "1.0.3",
"move-file": "2.1.0",
"pixelmatch": "5.3.0",
"pngjs": "6.0.0",
"sharp": "0.31.1"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
]
}