-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
54
{
"name": "@myunisoft/redis",
"version": "5.1.0",
"description": "MyUnisoft Redis package",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src test",
"prepublishOnly": "npm run build",
"test": "tsx ./test/run.ts",
"coverage": "c8 --all --src ./src -r html npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyUnisoft/Redis.git"
},
"publishConfig": {
"@myunisoft:registry": "https://registry.npmjs.org/"
},
"author": "Hallaert Nicolas <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/MyUnisoft/Redis/issues"
},
"homepage": "https://github.com/MyUnisoft/Redis#readme",
"keywords": [
"node",
"redis",
"session",
"store",
"stream",
"pubsub"
],
"devDependencies": {
"@openally/config.eslint": "^1.3.0",
"@openally/config.typescript": "^1.0.3",
"@types/node": "^22.10.5",
"c8": "^10.1.3",
"glob": "^11.0.0",
"mockdate": "^3.0.5",
"testcontainers": "^10.16.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@openally/ephemeral-map": "^1.3.2",
"@openally/result": "^1.3.0",
"ioredis": "^5.4.2"
}
}