flumm-fetch-cookies/package.json
jkhsjdhjs 5c6ccbd3e8
improve performance by using a Set instead of array filtering in fetch and CookieJar.cookiesValidForRequest()
use fsPromises API instead of the synchronous one
move cookie loading to seperate async CookieJar.load() function
make cookie saving async (CookieJar.save())
add helper function for creating type errors to error.mjs
move CookieParseError to error.mjs
change readme according to changes
bump minor version to 1.3.0
this version requires at least nodejs 11.14.0
2019-11-25 06:30:12 +01:00

35 lines
756 B
JSON

{
"name": "node-fetch-cookies",
"version": "1.3.0",
"description": "node-fetch wrapper that adds support for cookie-jars",
"main": "src/index.mjs",
"engines": {
"node": ">=11.14.0"
},
"files": [
"src/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkhsjdhjs/node-fetch-cookies.git"
},
"keywords": [
"cookie",
"cookie-jar",
"node-fetch",
"fetch"
],
"author": "jkhsjdhjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkhsjdhjs/node-fetch-cookies/issues"
},
"homepage": "https://github.com/jkhsjdhjs/node-fetch-cookies#readme",
"dependencies": {
"node-fetch": "^2.6.0"
}
}