-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 743 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 743 Bytes
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
{
"name": "node-redis-native",
"version": "0.0.1",
"description": "native nodejs redis addon experiment",
"main": "index.js",
"private": true,
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build",
"rebuild": "node-gyp rebuild",
"build:debug": "node-gyp build -debug",
"rebuild:debug": "node-gyp rebuild -debug",
"test": "mocha test/spec",
"test:debug": "mocha --debug test/spec",
"bench": "node benchmark"
},
"author": "",
"license": "WTFPL",
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.6.2"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.1.1",
"mocha": "^3.5.0",
"redis": "^2.8.0",
"redis-fast-driver": "^1.0.5"
}
}