-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.85 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
{
"name": "iomem",
"version": "1.5.11",
"description": "Memcached client implementing binary protocol with native multiple keys support",
"keywords": [
"cache",
"memcache",
"memcached",
"memcached-client",
"binary-protocol",
"memcached-binary",
"nosql",
"elasticache",
"multi",
"multi-get",
"multi-set",
"multi-del",
"failover",
"hashring"
],
"homepage": "https://github.com/alexzel/iomem#readme",
"bugs": "https://github.com/alexzel/iomem/issues",
"repository": "https://github.com/alexzel/iomem.git",
"author": "Alex Zelensky",
"license": "MIT",
"scripts": {
"lint": "eslint ./src ./benchmark",
"test": "jest",
"pretest": "yarn run lint",
"release": "yarn version",
"preversion": "yarn install && yarn test",
"postversion": "git push --tags && yarn publish . --new-version $npm_package_version && git push && echo Successfully released version $npm_package_version!",
"cleanup": "git tag -d $(git tag) && git fetch --all --tags && git clean --force -d -x && git reset --hard origin/main && git checkout main",
"docker:build": "docker build -t memcached-sasl .",
"docker:run": "docker run -d --name iomem-memcached-sasl -e SASL_PASSWORD=test -p 11211:11211 -it memcached-sasl",
"prepare": "husky install"
},
"files": [
"src",
"test",
"index.d.ts"
],
"main": "src/client.js",
"types": "index.d.ts",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"tinybench": "^2.9.0"
},
"dependencies": {
"hashring": "^3.2.0"
},
"engines": {
"node": ">=16.0.0"
}
}