-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.3 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
56
57
58
59
60
{
"name": "@amraly/tough-cookie-store-redis",
"version": "1.0.7",
"description": "Redis cookie store for tough-cookie module",
"files": [
"lib/"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/aaly00/tough-cookie-store-redis.git"
},
"keywords": [
"redis",
"cookie",
"tough-cookie",
"tough",
"store"
],
"author": "aaly00",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaly00/tough-cookie-store-redis/issues"
},
"homepage": "https://github.com/aaly00/tough-cookie-store-redis",
"peerDependencies": {
"redis": "^4.6.10",
"tough-cookie": "^4.1.3"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/lodash": "4.14.199",
"@types/node": "^18.18.5",
"@types/tough-cookie": "4.0.3",
"ioredis": "5.3.2",
"jest": "29.7.0",
"lodash": "4.17.21",
"redis": "^4.6.10",
"testcontainers": "10.11.0",
"tough-cookie": "^4.1.3",
"ts-jest": "29.1.1",
"tsx": "3.13.0",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"dotenv": "16.3.1"
}
}