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.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", "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" }, "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" } }