-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "loopback-connector-kv-redis",
"version": "4.0.0",
"description": "The official Redis KeyValue connector for LoopBack",
"engines": {
"node": ">=10"
},
"keywords": [
"StrongLoop",
"LoopBack",
"Connector",
"Redis",
"KeyValue"
],
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-connector-kv-redis"
},
"main": "lib/kv-redis.js",
"scripts": {
"test": "mocha test/integration node_modules/juggler-v3/test.js node_modules/juggler-v4/test.js",
"posttest": "npm run lint",
"lint": "eslint ."
},
"files": [
"intl",
"lib",
"docs.json"
],
"license": "MIT",
"dependencies": {
"debug": "^4.1.1",
"ioredis": "^4.9.3",
"loopback-connector": "^4.0.0",
"strong-globalize": "^6.0.1"
},
"devDependencies": {
"async-iterators": "^0.2.2",
"bluebird": "^3.4.1",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"eslint": "^5.16.0",
"eslint-config-loopback": "^13.1.0",
"juggler-v3": "file:./deps/juggler-v3",
"juggler-v4": "file:./deps/juggler-v4",
"loopback-datasource-juggler": "^4.0.0",
"mocha": "^6.1.4",
"should": "^13.2.3"
},
"author": "IBM Corp."
}