UNPKG

cypress-localstorage-commands

Version:

Extends Cypress' cy commands with localStorage methods. Allows preserving localStorage between tests

91 lines 2.85 kB
{ "name": "cypress-localstorage-commands", "version": "2.2.8", "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", "peerDependencies": { "cypress": ">=2.1.0" }, "devDependencies": { "@cypress/webpack-preprocessor": "6.0.4", "@eslint/js": "9.32.0", "@eslint/json": "0.13.1", "@eslint/markdown": "7.1.0", "@stryker-mutator/core": "9.0.1", "@stryker-mutator/jest-runner": "9.0.1", "@typescript-eslint/eslint-plugin": "8.38.0", "@typescript-eslint/parser": "8.38.0", "babel-loader": "10.0.0", "babel-plugin-module-resolver": "5.0.2", "cspell": "9.2.0", "cypress": "14.5.3", "eslint": "9.32.0", "eslint-config-prettier": "10.1.8", "eslint-import-resolver-typescript": "4.4.4", "eslint-plugin-cypress": "5.1.0", "eslint-plugin-import": "2.32.0", "eslint-plugin-jest": "29.0.1", "eslint-plugin-prettier": "5.5.3", "eslint-plugin-react": "7.37.5", "fs-extra": "11.3.0", "globals": "16.3.0", "husky": "9.1.7", "is-ci": "4.1.0", "jest": "30.0.5", "lint-staged": "16.1.2", "prettier": "3.6.2", "sinon": "21.0.0", "start-server-and-test": "2.0.12", "typescript": "5.8.3", "webpack": "5.101.0" }, "lint-staged": { "**/*.js": "eslint", "**/*.ts": "eslint", "**/*.tsx": "eslint", "**/*.json": "eslint", "**/*.md": "eslint", "*.*": "cspell --no-must-find-files" }, "engines": { "node": ">=14.0.0" }, "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" } }