-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·67 lines (67 loc) · 1.71 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
65
66
67
{
"name": "@outofsync/object-key-cache",
"version": "2.0.3",
"description": "A Promise-based, object-key, cache extension for Redis and MemoryCache.",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0 <=23.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run build",
"pre-push": "npm run build"
}
},
"scripts": {
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --forceExit",
"build": "npm run lint && npm run test && npm run coverage",
"fix": "eslint --fix",
"lint": "eslint",
"coverage": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --coverage --forceExit",
"pretty": "prettier **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OutofSyncStudios/object-key-cache.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"object",
"cache",
"redis",
"memory",
"nodejs",
"object key"
],
"author": "Jay Reardon",
"license": "MIT",
"bugs": {
"url": "https://github.com/OutofSyncStudios/object-key-cache/issues"
},
"homepage": "https://github.com/OutofSyncStudios/object-key-cache#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "9.6",
"cross-env": "^7.0.3",
"eslint": "9.6",
"globals": "^15.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"sinon": "^18.0.0"
},
"dependencies": {
"@outofsync/memory-cache": "^2.0.2",
"lodash.isnil": "^4.0.0",
"lodash.merge": "^4.6.2",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"logstub": "^2.0.0",
"redis": "^4.6.14"
}
}