-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.89 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
68
69
70
71
72
73
74
75
76
{
"name": "lru-send",
"version": "0.1.3",
"description": "LRU-based caching middleware for Node.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./redis": "./dist/redis.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "tsm node_modules/uvu/bin.js tests",
"test:coverage": "c8 --include=src pnpm test",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov",
"lint": "eslint \"./**/*.ts\"",
"format": "prettier --write \"./**/*.ts\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinyhttp/lru-send.git"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"keywords": [
"http",
"tinyhttp",
"response-caching",
"cache",
"perf",
"lru",
"performance"
],
"author": "v1rtl",
"license": "MIT",
"bugs": {
"url": "https://github.com/tinyhttp/lru-send/issues"
},
"homepage": "https://github.com/tinyhttp/lru-send#readme",
"funding": {
"type": "individual",
"url": "https://github.com/talentlessguy/better-schema-link?sponsor=1"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@rollup/plugin-typescript": "^8.3.1",
"@tinyhttp/app": "^2.0.19",
"@types/ioredis": "^4.28.8",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"c8": "7.11.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"prettier": "^2.5.1",
"rollup": "^2.69.1",
"supertest-fetch": "^1.5.0",
"tsm": "^2.2.1",
"typescript": "^4.6.2",
"uvu": "^0.5.3"
},
"dependencies": {
"quick-lru": "^6.1.0"
},
"optionalDependencies": {
"ioredis": "^4.28.5"
}
}