{
  "name": "popsicle-cookie-jar",
  "version": "1.0.1",
  "description": "Popsicle middleware for supporting cookies in node.js",
  "keywords": [
    "popsicle",
    "cookies",
    "jar",
    "memory",
    "store"
  ],
  "homepage": "https://github.com/serviejs/popsicle-cookie-jar",
  "bugs": {
    "url": "https://github.com/serviejs/popsicle-cookie-jar/issues"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/serviejs/popsicle-cookie-jar.git"
  },
  "license": "MIT",
  "author": {
    "name": "Blake Embrey",
    "email": "hello@blakeembrey.com",
    "url": "http://blakeembrey.me"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/"
  ],
  "scripts": {
    "build": "ts-scripts build",
    "format": "ts-scripts format",
    "prepare": "ts-scripts install",
    "prepublishOnly": "npm run build",
    "specs": "ts-scripts specs",
    "test": "ts-scripts test"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,json,css,md}": [
      "npm run prettier",
      "git add"
    ]
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ],
    "roots": [
      "<rootDir>/src/"
    ],
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
    "transform": {
      "\\.tsx?$": "ts-jest"
    }
  },
  "dependencies": {
    "@types/tough-cookie": "^4.0.2",
    "tough-cookie": "^4.1.3"
  },
  "devDependencies": {
    "@borderless/ts-scripts": "^0.15.0",
    "@types/node": "^20.9.3",
    "@types/pump": "^1.1.0",
    "@vitest/coverage-v8": "^0.34.6",
    "express": "^4.17.1",
    "jest": "^29.7.0",
    "servie": "^4.0.10",
    "throwback": "^4.1.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.2",
    "vitest": "^0.34.6"
  },
  "peerDependencies": {
    "servie": "^4.0.0"
  },
  "engines": {
    "node": ">=8"
  },
  "publishConfig": {
    "access": "public"
  }
}