tough-cookie-file-store
Version:
A JSON file store for tough-cookie module
72 lines (71 loc) • 1.62 kB
JSON
{
"name": "tough-cookie-file-store",
"description": "A JSON file store for tough-cookie module",
"version": "3.1.0",
"author": "Ivan Marban",
"homepage": "https://github.com/ivanmarban/tough-cookie-file-store",
"repository": {
"type": "git",
"url": "http://github.com/ivanmarban/tough-cookie-file-store.git"
},
"bugs": {
"url": "https://github.com/ivanmarban/tough-cookie-file-store/issues"
},
"keywords": [
"HTTP",
"cookie",
"cookies",
"set-cookie",
"cookiejar",
"jar",
"RFC6265",
"RFC2965",
"store",
"file",
"json"
],
"dependencies": {
"tough-cookie": "^5.0.0"
},
"type": "module",
"main": "dist/cookie-file-store.js",
"types": "dist/cookie-file-store.d.ts",
"engines": {
"node": ">=16"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"CHANGELOG.md"
],
"scripts": {
"lint": "eslint lib test --color",
"lint:fix": "eslint lib test --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"ts:types": "tsc",
"build": "tsc",
"prepare": "npm run build"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.34.1",
"chai": "^5.2.0",
"chai-datetime": "^1.8.1",
"eslint": "^8.57.1",
"eslint-plugin-jsdoc": "^50.6.9",
"jest": "^29.7.0",
"standard": "^17.1.2",
"typescript": "^5.8.3"
}
}