forked from electrode-io/memcache
-
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) · 995 Bytes
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 995 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "memcache-parser",
"version": "0.2.8",
"description": "A very efficient NodeJS memcached ASCII Protocol parser by using only Buffer APIs",
"main": "lib/memcache-parser.js",
"scripts": {
"test": "clap check"
},
"repository": {
"type": "git",
"url": "https://github.com/electrode-io/memcache.git"
},
"keywords": [
"memcache",
"memcached",
"nodejs",
"client",
"ascii",
"protocol",
"parser"
],
"author": "Joel Chen <joel123@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"electrode-archetype-njs-module-dev": "^2.3.0"
},
"engines": {
"node": ">=4"
},
"nyc": {
"all": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage",
"*clap.js",
"gulpfile.js",
"dist",
"test"
],
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100,
"cache": true
}
}