{
  "name": "cypress-localstorage-commands",
  "version": "2.3.0",
  "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.5.1",
    "@stryker-mutator/core": "9.6.0",
    "@stryker-mutator/jest-runner": "9.6.0",
    "@typescript-eslint/eslint-plugin": "8.57.0",
    "@typescript-eslint/parser": "8.57.0",
    "babel-loader": "10.1.1",
    "babel-plugin-module-resolver": "5.0.2",
    "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": "5.1.0",
    "eslint-plugin-import": "2.32.0",
    "eslint-plugin-jest": "29.15.0",
    "eslint-plugin-prettier": "5.5.5",
    "eslint-plugin-react": "7.37.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",
    "start-server-and-test": "2.1.5",
    "typescript": "5.9.3",
    "webpack": "5.105.4"
  },
  "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-14 && pnpm test:e2e:cypress-14-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-14": "pnpm --filter cypress-14 test:ci",
    "test:e2e:cypress-14-no-plugin": "pnpm --filter cypress-14-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"
  }
}