-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 954 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 954 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
{
"name": "libmemcached",
"version": "0.1.1",
"description": "Node.js bindings to the libmemcached library",
"main": "index.js",
"gypfile": true,
"scripts": {
"install": "node-gyp rebuild",
"pretest": "echo \"set test 0 0 1 \r\n1\r\nset str 0 0 1 \r\na\r\nset to_del 0 0 4 \r\ntest\r\nset to_del2 0 0 4 \r\ntest\r\nquit\"| nc 127.0.0.1 11211",
"lint": "vera++ src/*",
"test": "mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomi77/node-libmemcached.git"
},
"keywords": [
"libmemcached",
"memcached",
"memcache",
"client"
],
"author": "Tomasz Jakub Rup <tomasz.rup@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomi77/node-libmemcached/issues"
},
"homepage": "https://github.com/tomi77/node-libmemcached",
"dependencies": {
"nan": "^2.11.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.0.0"
}
}