forked from h0x91b/redis-fast-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "redis-fast-driver",
"version": "2.0.2",
"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)"
],
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/h0x91b/redis-fast-driver/issues"
},
"homepage": "https://github.com/h0x91b/redis-fast-driver",
"dependencies": {
"nan": "latest"
},
"devDependencies": {
"bluebird": "^3.5.1",
"eslint": "^4.12.1",
"intelli-espower-loader": "^1.0.1",
"matcha": "^0.7.0",
"mocha": "^4.0.1",
"power-assert": "^1.4.4"
}
}