-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name" : "@shaitan-masters/redis",
"description" : "Redis wrapper",
"version" : "0.3.0",
"authors" : {
"name" : "Alexander Gropynov | CREW Shaitan Masters",
"email": "[email protected]"
},
"license" : "MIT",
"repository" : {
"type": "git",
"url" : "git+https://github.com/shaitan-masters/node-redis.git"
},
"keywords" : [
"sdk",
"api",
"redis",
"publisher",
"subscriber",
"wrapper"
],
"bugs" : {
"url": "https://github.com/shaitan-masters/node-redis/issues"
},
"homepage" : "https://github.com/shaitan-masters/node-redis#readme",
"scripts" : {
"build" : "rimraf ./dist && tsc",
"prepublishOnly": "npm run build"
},
"main" : "./dist/index.js",
"types" : "./dist/index.d.ts",
"dependencies" : {
"@osmium/tools" : "~0.6.7",
"@osmium/events": "~0.9.3",
"ioredis" : "~5.0.5"
},
"devDependencies": {
"@types/node": "^16.11.36",
"rimraf" : "^3.0.2",
"typescript" : "^4.6.4"
}
}