-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.73 KB
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
{
"name": "cypress-fail-fast",
"version": "8.1.0",
"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": [
"dist"
],
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./index.js": "./dist/index.js",
"./plugin": "./dist/plugin.js",
"./plugin.js": "./dist/plugin.js"
},
"scripts": {
"cspell": "cspell . --quiet",
"build": "tsc --project ./tsconfig.code.json",
"lint": "eslint .",
"lint-staged": "lint-staged",
"test": "jest",
"test:ci": "pnpm run test:unit && pnpm run test:mutation && pnpm run test:e2e",
"test:e2e": "cd test-e2e/runner && pnpm run test:e2e",
"test:mutation": "stryker run",
"test:unit": "pnpm run test",
"check:types": "pnpm check:types:code && pnpm check:types:test",
"check:types:code": "tsc --noEmit --project ./tsconfig.code.json",
"check:types:test": "tsc --noEmit --project ./tsconfig.test.json",
"prepare": "is-ci || husky install"
},
"peerDependencies": {
"cypress": ">=15.10.0"
},
"dependencies": {
"chalk": "4.1.2"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.0",
"@babel/preset-typescript": "7.28.5",
"@eslint/js": "9.32.0",
"@eslint/json": "0.13.1",
"@eslint/markdown": "7.5.1",
"@jest/globals": "30.3.0",
"@stryker-mutator/api": "9.6.0",
"@stryker-mutator/core": "9.6.0",
"@stryker-mutator/jest-runner": "9.6.0",
"@types/jest": "30.0.0",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.57.0",
"@typescript-eslint/parser": "8.57.0",
"cspell": "9.7.0",
"cypress": "15.12.0",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-cypress": "6.2.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.0",
"eslint-plugin-prettier": "5.5.5",
"fs-extra": "11.3.4",
"globals": "16.3.0",
"husky": "9.1.7",
"is-ci": "4.1.0",
"jest": "30.3.0",
"lint-staged": "16.4.0",
"prettier": "3.8.1",
"sinon": "21.0.2",
"typescript": "5.9.3"
},
"lint-staged": {
"**/*.js": "eslint",
"**/*.ts": "eslint",
"**/*.tsx": "eslint",
"**/*.json": "eslint",
"**/*.md": "eslint",
"*.*": "cspell --no-must-find-files"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.4.0"
}