-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "redis-cookie-store",
"version": "1.0.4",
"description": "Redis cookie store for tough-cookie module",
"files": [
"lib/"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"format": "prettier --write \"**/*.{js,json}\"",
"lint": "eslint .",
"pretest": "eslint .",
"test": "ava --verbose",
"test:watch": "npm test -- --watch",
"coverage": "nyc npm test && nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "https://github.com/benkroeger/redis-cookie-store.git"
},
"keywords": [
"redis",
"cookie",
"tough-cookie",
"tough",
"store"
],
"author": "Benjamin Kroeger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benkroeger/redis-cookie-store/issues"
},
"homepage": "https://github.com/benkroeger/redis-cookie-store",
"dependencies": {
"async": "^3.2.2",
"lodash": "4.17.21",
"tough-cookie": "^2.3.4"
},
"devDependencies": {
"ava": "1.4.1",
"eslint": "7.9.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"nyc": "15.1.0",
"prettier": "2.1.2"
},
"engines": {
"node": ">=12.0.0"
}
}