-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1014 Bytes
/
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
{
"name": "@fugazi/connector.redis",
"version": "1.0.5",
"description": "a fugazi redis connector for node",
"main": "scripts/bin/index.js",
"types": "scripts/bin/index.d.ts",
"keywords": [
"fugazi",
"redis",
"cli",
"api",
"rest",
"rpc"
],
"scripts": {
"compile": "node_modules/typescript/bin/tsc -p scripts",
"start": "node scripts/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fugazi-io/connector.node.redis.git"
},
"author": "Nitzan Tomer <nitzan.tomer@gmail.com> (https://github.com/nitzantomer)",
"license": "ISC",
"bugs": {
"url": "https://github.com/fugazi-io/connector.node.redis/issues"
},
"homepage": "https://github.com/fugazi-io/connector.node.redis#readme",
"dependencies": {
"@fugazi/connector": "^1.0.13",
"@types/commander": "^2.3.31",
"@types/redis": "^0.12.35",
"commander": "^2.9.0",
"node-redis": "^0.1.7",
"redis": "^2.6.5",
"typescript": "^2.3.4"
}
}