forked from 3rd-Eden/memcached
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@creditkarma/memcached",
"version": "2.0.0",
"author": "Credit Karma",
"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": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"files": [
"dist/main"
],
"keywords": [
"InnoDB memcached API",
"cache",
"client",
"cluster",
"failover",
"hashing",
"membase",
"memcache",
"memcached",
"nMemcached",
"nosql"
],
"scripts": {
"clean": "rimraf dist",
"clean-all": "rimraf dist node_modules package-lock.json",
"lint": "tslint --fix './src/**/*.ts'",
"prebuild": "npm run clean",
"build": "npm run lint && tsc",
"docker": "docker-compose up --force-recreate &",
"docker:kill": "docker-compose kill",
"pretest": "npm run docker:kill && npm run docker && npm run build",
"test": "wait-on --timeout 20000 tcp:11211 tcp:11212 tcp:11213 && mocha --opts mocha.opts",
"posttest": "npm run docker:kill",
"release:patch": "npm version patch && npm run release:publish",
"release:minor": "npm version minor && npm run release:publish",
"release:major": "npm version major && npm run release:publish",
"release:prepatch": "npm version prepatch && npm run release:publish",
"release:preminor": "npm version preminor && npm run release:publish",
"release:premajor": "npm version premajor && npm run release:publish",
"release:prerelease": "npm version prerelease && npm run release:publish",
"release:publish": "git push --follow-tags"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/creditkarma/memcached.git"
},
"dependencies": {
"hashring": "^3.2.0",
"jackpot": "^0.0.6"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^16.11.34",
"@types/chai": "^4.1.4",
"mocha": "^5.2.0",
"chai": "^4.1.2",
"rimraf": "^3.0.2",
"tslint": "^5.11.0",
"typescript": "4.6.x",
"wait-on": "^2.1.0"
}
}