-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.14 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": "cypress-fail-fast",
"version": "7.1.1",
"description": "Skip the rest of Cypress tests on first failure",
"keywords": [
"cypress",
"cypress-plugin",
"fail-fast",
"failure",
"skip",
"cancel",
"tests",
"testing-tools",
"testing",
"parallel"
],
"author": "Javier Brea",
"license": "MIT",
"repository": "https://github.com/javierbrea/cypress-fail-fast",
"files": [
"src",
"index.d.ts",
"plugin.js",
"plugin.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint src test *.js test-e2e/*.js test-e2e/commands/**/*.js test-e2e/cypress-src/**/*.js test-e2e/test/**/*.js",
"lint-staged": "lint-staged",
"test": "jest",
"test:unit": "npm run test",
"test:e2e:install": "cd test-e2e && npm i",
"test:e2e:run": "cd test-e2e && npm run test:ci",
"test:e2e:run:debug": "cross-env DEBUG=true npm run test:e2e:run",
"test:e2e:debug": "npm run test:e2e:install && npm run test:e2e:run:debug",
"test:e2e:ci": "npm run test:e2e:install && npm run test:e2e:run",
"test:ci": "npm run test && npm run test:mutation && npm run test:e2e:ci",
"test:mutation": "stryker run",
"tsc": "tsc",
"prepare": "is-ci || husky install"
},
"peerDependencies": {
"cypress": ">=8.0.0"
},
"dependencies": {
"chalk": "4.1.2"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.1",
"@stryker-mutator/core": "7.3.0",
"@stryker-mutator/jest-runner": "7.3.0",
"cross-env": "7.0.3",
"cypress": "13.13.2",
"eslint": "8.54.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"husky": "9.1.4",
"is-ci": "3.0.1",
"jest": "29.7.0",
"lint-staged": "15.2.8",
"prettier": "3.3.3",
"sinon": "18.0.0",
"typescript": "5.5.4"
},
"lint-staged": {
"*.js": "eslint",
"src/**/*.js": "eslint",
"test/**/*.js": "eslint",
"test-e2e/*.js": "eslint",
"test-e2e/commands/**/*.js": "eslint",
"test-e2e/cypress-src/**/*.js": "eslint",
"test-e2e/test/**/*.js": "eslint"
},
"engines": {
"node": ">=14.0.0"
}
}