-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "redis-fast-driver",
"version": "2.2.6",
"description": "Fast truly async driver for redis (based on hiredis async version)",
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "mocha --require intelli-espower-loader test/*.js",
"install": "node-gyp rebuild",
"bench": "matcha benchmarks/*.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/h0x91b/redis-fast-driver.git"
},
"author": "Arseniy Pavlenko (https://github.com/h0x91b)",
"contributors": [
"Samuel Reed (https://github.com/strml)",
"Adrian Gierakowski (https://github.com/adrian-gierakowski)",
"HcgRandon (https://github.com/HcgRandon)"
],
"keywords": [
"redis",
"async",
"pipelining"
],
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/h0x91b/redis-fast-driver/issues"
},
"homepage": "https://github.com/h0x91b/redis-fast-driver",
"dependencies": {
"nan": "^2.17.0"
},
"devDependencies": {
"@types/node": "^16.9.6",
"bluebird": "^3.5.1",
"eslint": "^8.27.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^9.1.1",
"power-assert": "^1.4.4"
},
"typings": "./index.d.ts"
}