-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
78 lines (78 loc) · 2.79 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
{
"name": "@simonsmith/cypress-image-snapshot",
"packageManager": "[email protected]",
"version": "9.1.0",
"files": [
"*.js",
"*.map",
"*.d.ts",
"util"
],
"description": "Cypress Image Snapshot binds jest-image-snapshot's image diffing logic to Cypress commands.",
"repository": {
"type": "git",
"url": "https://github.com/simonsmith/cypress-image-snapshot"
},
"author": "Simon Smith <[email protected]>",
"license": "MIT",
"scripts": {
"test:open": "npm-run-all build --parallel --race cypress:open cypress:server",
"test:run": "npm-run-all build --parallel --race cypress:run cypress:server",
"build": "run-s build:clean build:ts",
"build:clean": "rm -rf dist",
"build:ts": "tsc",
"ci:build": "tsc --outDir . --declarationDir .",
"lint": "run-p -c 'lint:*'",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint --ext .ts,.json .",
"lint:commits": "commitlint --from=HEAD~$(git --no-pager rev-list origin/master..HEAD --count)",
"docker:build": "docker build -t cypress-image-snapshot .",
"docker:run": "docker run -it --env CYPRESS_updateSnapshots --env CYPRESS_debugSnapshots -v $PWD:/home/cypress-image-snapshot cypress-image-snapshot",
"cypress:open": "cypress open --env debugSnapshots=true,failOnSnapshotDiff=false --browser electron --e2e",
"cypress:run": "cypress run --browser electron",
"cypress:server": "http-server -s -p 9001 -c-1 ./cypress/server &",
"doc": "doctoc README.md --github --notitle",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^11.0.1",
"@types/eslint": "^8.37.0",
"@types/eslint-config-prettier": "^6.11.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.12",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"cypress": "^13.14.2",
"doctoc": "^2.2.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"replace-json-property": "^1.9.0",
"semantic-release": "^21.0.2",
"typescript": "5.4.2"
},
"peerDependencies": {
"cypress": ">10.0.0"
},
"dependencies": {
"@types/jest-image-snapshot": "^6.1.0",
"chalk": "^4.1.2",
"jest-image-snapshot": "^6.1.0"
},
"volta": {
"node": "20.10.0",
"yarn": "3.5.0"
}
}