-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"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"
}
}