-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "redis-pubsub-futures",
"version": "1.2.2",
"description": "A node-redis wrapper to implement an RPC client for redis using Futures written in Typescript",
"author": "Eduardo Mosqueda(@bbaaxx)",
"repository": {
"type": "git",
"url": "https://github.com/bbaaxx/redis-pubsub-futures.git"
},
"main": "dist/index.js",
"keywords": [
"redis",
"RPC",
"node-redis",
"Future",
"Fluture",
"futures"
],
"license": "MIT",
"scripts": {
"build": "tsc -d --project .",
"test": "jest -u --coverage",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"dependencies": {
"fluture": "^14.0.0",
"nanoid": "^3.1.29",
"redis": "^3.1.2"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@types/redis": "^2.8.32",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^8.0.0",
"jest": "^27.2.5",
"redis-mock": "^0.56.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}