-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
79 lines (79 loc) · 2.3 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
{
"name": "@frsource/cypress-plugin-visual-regression-diff",
"description": "Perform visual regression test with a nice GUI as help. 💅 Only for Cypress!",
"version": "1.6.0",
"author": "Jakub Freisler <[email protected]>",
"repository": "https://github.com/FRSOURCE/cypress-plugin-visual-regression-diff.git",
"sideEffects": false,
"license": "MIT",
"scripts": {
"build": "del-cli dist && microbundle src/{constants,plugins,support}.ts -f cjs",
"lint": "eslint '**/*.ts' --ignore-pattern '**/*.d.ts'",
"lint:fix": "yarn lint --fix",
"lint:ci": "yarn lint --max-warnings 0",
"prettify": "prettier --write src",
"prettify:ci": "prettier --check src",
"prepack": "yarn build",
"release": "semantic-release",
"release:ci": "yarn release --yes",
"release:test": "yarn release --no-git-tag-version --no-push --skip-npm"
},
"engines": {
"node": ">=10"
},
"packageManager": "[email protected]",
"peerDependencies": {
"cypress": ">=4.5.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^8.0.2",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/pixelmatch": "^5.2.4",
"@types/pngjs": "^6.0.1",
"@types/sharp": "^0.29.5",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"cypress": "^8.6.0",
"del-cli": "^4.0.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"microbundle": "^0.14.1",
"prettier": "^2.4.1",
"semantic-release": "^18.0.0",
"typescript": "^4.4.4"
},
"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": {
"move-file": "^2.1.0",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"sharp": "^0.30.1"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
]
}