-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
55 lines (55 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
51
52
53
54
55
{
"name": "redis-parser",
"version": "3.0.0",
"description": "Javascript Redis protocol (RESP) parser",
"main": "index.js",
"scripts": {
"test": "nyc --cache --preserve-comments mocha -- -R spec && nyc report --reporter=html",
"benchmark": "node ./benchmark",
"lint": "standard --fix",
"posttest": "npm run lint && npm run coverage:check",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"coverage:check": "nyc 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"
],
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">=4"
},
"dependencies": {
"redis-errors": "^1.2.0"
},
"devDependencies": {
"benchmark": "^2.1.0",
"coveralls": "^3.0.10",
"nyc": "^14.1.1",
"mocha": "^6.1.1",
"standard": "^11.0.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"
}
}