-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 KB
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
{
"name": "zapcache",
"version": "1.8.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"bin": {
"zapcache-server": "./dist/server.js"
},
"scripts": {
"test": "TS_NODE_PROJECT=tsconfig.json node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./\"));' --test $(find tests -name '*.test.ts')",
"build": "tsc",
"husky": "husky install",
"release": "standard-version",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"cache",
"caching",
"node",
"fast",
"ttl",
"typescript",
"performance",
"node",
"memory-cache"
],
"license": "MIT",
"description": "",
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"eslint": "^9.21.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test",
"commit-msg": "npx --no -- commitlint --edit $1"
}
},
"dependencies": {
"ioredis": "^5.5.0"
}
}