mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
{
|
|
"name": "tough-cookie-file-store",
|
|
"description": "A JSON file store for tough-cookie module",
|
|
"version": "2.0.3",
|
|
"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": "^4.0.0"
|
|
},
|
|
"main": "lib/cookie-file-store",
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint lib test --color",
|
|
"format": "prettier-standard 'lib/**/*.js' 'test/**/*.js'",
|
|
"test": "nyc --reporter=text --reporter=html --reporter=lcovonly mocha"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"chai": "^4.3.4",
|
|
"chai-datetime": "^1.8.0",
|
|
"coveralls": "^3.1.1",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.24.2",
|
|
"eslint-plugin-jsdoc": "^36.1.0",
|
|
"eslint-plugin-mocha": "^9.0.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"mocha": "^9.1.2",
|
|
"nyc": "^15.1.0",
|
|
"prettier-standard": "^16.4.1"
|
|
}
|
|
}
|
|
|