-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
43 lines (43 loc) · 939 Bytes
/
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
{
"name": "memcache-parser",
"version": "1.0.1",
"description": "A very efficient NodeJS memcached ASCII Protocol parser by using only Buffer APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"coverage": "xrun xarc/test-cov",
"lint": "xrun xarc/lint",
"prepublishOnly": "(cd ../../ && npm run prepublishOnly)",
"test": "npm run lint && xrun xarc/test-only"
},
"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",
"engines": {
"node": ">=4"
},
"@xarc/module-dev": {
"features": [
"eslint",
"eslintTS",
"jest",
"jestTS",
"prettier",
"typedoc",
"typescript"
]
}
}