forked from NodeRedis/node-redis-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 KB
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
{
"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"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@coderty"
},
"keywords": [
"redis",
"protocol",
"parser",
"database",
"javascript",
"node",
"nodejs",
"resp"
],
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">=4"
},
"dependencies": {
"redis-errors": "^1.2.0"
},
"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"
}
}