-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "redis-parser",
"version": "2.0.0",
"description": "Javascript Redis protocol (RESP) parser",
"main": "index.js",
"scripts": {
"test": "npm run coverage",
"benchmark": "node ./benchmark",
"posttest": "standard && npm run coverage:check",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover --preserve-comments ./node_modules/mocha/bin/_mocha -- -R spec",
"coverage:check": "node ./node_modules/istanbul/lib/cli.js check-coverage --branch 100 --statement 100"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeRedis/node-redis-parser.git"
},
"keywords": [
"redis",
"protocol",
"parser",
"database",
"javascript",
"node",
"nodejs",
"resp",
"hiredis"
],
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"benchmark": "^2.1.0",
"codeclimate-test-reporter": "^0.3.1",
"intercept-stdout": "^0.1.2",
"istanbul": "^0.4.0",
"standard": "^7.0.1",
"mocha": "^2.3.2",
"hiredis": "^0.4.1"
},
"author": "Ruben Bridgewater",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeRedis/node-redis-parser/issues"
},
"homepage": "https://github.com/NodeRedis/node-redis-parser#readme",
"directories": {
"test": "test",
"lib": "lib"
}
}