-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "@joshbetz/memcached",
"version": "1.3.1",
"description": "Memcached client for modern Node JS",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run lint && npm run jest",
"lint": "eslint src __tests__",
"jest": "jest",
"prepare": "npm run build"
},
"author": "Josh Betz",
"license": "MIT",
"keywords": [
"cache",
"cluster",
"failover",
"hashring",
"memcache",
"memcached"
],
"dependencies": {
"generic-pool": "^3.9.0",
"hashring": "^3.2.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-spellcheck": "^0.0.19",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=18.0"
}
}