forked from 3rd-Eden/memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "memcached",
"version": "0.2.41",
"author": "Arnout Kazemier",
"description": "A fully featured Memcached API client, supporting both single and clustered Memcached servers through consistent hashing and failover/failure. Memcached is rewrite of nMemcached, which will be deprecated in the near future.",
"main": "index",
"keywords": [
"InnoDB memcached API",
"cache",
"client",
"cluster",
"failover",
"hashing",
"membase",
"memcache",
"memcached",
"nMemcached",
"nosql"
],
"maintainers": [
{
"name": "Arnout Kazemier",
"email": "[email protected]",
"url": "http://www.3rd-Eden.com"
}
],
"license": {
"type": "MIT",
"url": "http://github.com/3rd-Eden/node-memcached/blob/master/LICENSE"
},
"repository": {
"type": "git",
"url": "http://github.com/3rd-Eden/node-memcached.git"
},
"dependencies": {
"hashring": "0.0.x",
"jackpot": ">=0.0.6"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"pre-commit": "*"
},
"scripts": {
"test": "./node_modules/.bin/mocha $(shell find test -name '*.test.js')"
}
}