tough-cookie-file-store
Version:
A JSON file store for tough-cookie module
73 lines (72 loc) • 1.65 kB
JSON
{
"name": "tough-cookie-file-store",
"description": "A JSON file store for tough-cookie module",
"version": "3.3.0",
"author": "Ivan Marban",
"homepage": "https://github.com/ivanmarban/tough-cookie-file-store",
"repository": {
"type": "git",
"url": "git+ssh://git@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": "^6.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",
"dist/**/*.ts.map",
"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.49.0",
"chai": "^6.2.1",
"chai-datetime": "^1.8.1",
"eslint": "^8.57.1",
"eslint-plugin-jsdoc": "^61.5.0",
"jest": "^30.2.0",
"standard": "^17.1.2",
"typescript": "^5.9.3"
}
}