forked from 3rd-Eden/memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
48
{
"name": "@talabes/memcached",
"version": "2.3.1",
"author": "Arnout Kazemier",
"maintainers": [
"Tomas Alabes"
],
"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": [
"cache",
"client",
"cluster",
"failover",
"hashing",
"membase",
"memcache",
"memcached",
"nMemcached",
"nosql"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tomasAlabes/memcached.git"
},
"dependencies": {
"hashring": "3.2.0",
"jackpot": "0.0.6"
},
"devDependencies": {
"mocha": "8.1.1",
"should": "13.2.3",
"pre-commit": "1.2.2"
},
"scripts": {
"test": "mocha $(find test -name '*.test.js') --exit"
},
"bugs": {
"url": "https://github.com/tomasAlabes/memcached/issues"
},
"homepage": "https://github.com/tomasAlabes/memcached#readme",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
}
}