-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 2.83 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
{
"name": "cypress-localstorage-commands",
"version": "2.2.7",
"description": "Extends Cypress' cy commands with localStorage methods. Allows preserving localStorage between tests",
"keywords": [
"cypress",
"plugin",
"local-storage",
"localstorage",
"methods",
"utilities",
"commands",
"testing-tools",
"testing",
"persistence"
],
"author": "Javier Brea",
"license": "MIT",
"repository": "https://github.com/javierbrea/cypress-localstorage-commands",
"files": [
"src",
"index.d.ts",
"plugin.js",
"plugin.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"cspell": "cspell . --quiet",
"lint": "eslint .",
"lint-staged": "lint-staged",
"test": "jest",
"test:ci": "pnpm run test:unit && pnpm run test:mutation && pnpm run test:e2e",
"test:e2e": "pnpm test:e2e:cypress-9 && pnpm test:e2e:cypress-9-no-plugin && pnpm test:e2e:cypress-latest && pnpm test:e2e:cypress-latest-no-plugin && pnpm test:e2e:cypress-typescript",
"test:e2e:cypress-9": "pnpm --filter cypress-9 test:ci",
"test:e2e:cypress-9-no-plugin": "pnpm --filter cypress-9-no-plugin test:ci",
"test:e2e:cypress-latest": "pnpm --filter cypress-latest test:ci",
"test:e2e:cypress-latest-no-plugin": "pnpm --filter cypress-latest-no-plugin test:ci",
"test:e2e:cypress-typescript": "pnpm --filter cypress-typescript test:ci",
"test:mutation": "stryker run",
"test:unit": "pnpm run test",
"tsc": "tsc",
"prepare": "is-ci || husky install"
},
"peerDependencies": {
"cypress": ">=2.1.0"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "6.0.2",
"@eslint/js": "9.16.0",
"@eslint/json": "0.8.0",
"@eslint/markdown": "6.2.1",
"@stryker-mutator/core": "8.6.0",
"@stryker-mutator/jest-runner": "8.6.0",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"babel-loader": "9.2.1",
"babel-plugin-module-resolver": "5.0.2",
"cspell": "8.16.1",
"cypress": "13.16.1",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"fs-extra": "11.2.0",
"globals": "15.13.0",
"husky": "9.1.7",
"is-ci": "3.0.1",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.4.2",
"sinon": "19.0.2",
"start-server-and-test": "2.0.8",
"typescript": "5.7.2",
"webpack": "5.97.1"
},
"lint-staged": {
"**/*.js": "eslint",
"**/*.ts": "eslint",
"**/*.tsx": "eslint",
"**/*.json": "eslint",
"**/*.md": "eslint",
"*.*": "cspell --no-must-find-files"
},
"engines": {
"node": ">=14.0.0"
}
}