-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 KB
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
{
"name": "predis",
"version": "1.1.4",
"description": "Redis interface with promises",
"author": {
"name": "Andrei Zharov",
"email": "belmass@gmail.com",
"url": "http://www.o2v.net/"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"redis",
"deferred",
"asynchronous",
"promise"
],
"license": "MIT",
"main": "predis.js",
"scripts": {
"lint": "eslint ./ --quiet",
"jest": "jest",
"test": "npm run lint && npm run jest"
},
"dependencies": {
"bluebird": "3.7.2",
"redis": "4.5.1",
"redis-commands": "1.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/natalan/predis.git"
},
"devDependencies": {
"eslint": "8.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.1",
"jest": "29.3.1",
"jest-cli": "29.3.1",
"redis-mock": "0.56.3"
}
}