forked from classdojo/memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "@naturalatlas/memcached",
"version": "3.0.7",
"author": "classdojo",
"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.js",
"types": "index.d.ts",
"keywords": [
"InnoDB memcached API",
"cache",
"client",
"cluster",
"failover",
"hashing",
"membase",
"memcache",
"memcached",
"nMemcached",
"nosql"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/classdojo/memcached.git"
},
"dependencies": {
"@naturalatlas/jackpot": "^0.0.8",
"hashring": "3.2.x"
},
"devDependencies": {
"mocha": "*",
"pre-commit": "*",
"prettier": "^2.4.1",
"should": "*"
},
"scripts": {
"test": "mocha $(find test -name '*.test.js') --exit --require should --reporter spec --ui bdd",
"debugTest": "mocha $(find test -name '*.test.js') --exit --require should --reporter spec --ui bdd --inspect-brk --debug"
}
}