-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
117 lines (117 loc) · 2.46 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "koa-cash",
"description": "HTTP response caching for Koa. HTTP response caching for Koa. Supports Redis, in-memory store, and more!",
"version": "5.0.0",
"author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
"bugs": {
"url": "https://github.com/koajs/cash/issues",
"email": "me@jongleberry.com"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"contributors": [
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com)"
],
"dependencies": {
"bytes": "^3.1.2",
"compressible": "^2.0.18",
"fast-safe-stringify": "^2.1.1",
"get-stream": "^5.1.0",
"is-stream": "^2.0.0",
"koa-is-json": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"ava": "^5.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^9.1.4",
"into-stream": "5.1.1",
"koa": "^2.15.4",
"lint-staged": "^15.2.8",
"lru-cache": "4.x",
"nyc": "^17.0.0",
"remark-cli": "11.0.0",
"remark-preset-github": "^4.0.4",
"supertest": "^7.0.0",
"xo": "0.56.0"
},
"engines": {
"node": ">=18"
},
"files": [
"index.js"
],
"homepage": "https://github.com/koajs/cash",
"keywords": [
"alternative",
"amazon",
"aws",
"cache",
"caching",
"cdn",
"cloudfront",
"content",
"database",
"db",
"delivery",
"handler",
"hosting",
"http",
"in-memory",
"ioredis",
"key",
"koa",
"memory",
"middleware",
"network",
"provider",
"redis",
"response",
"responses",
"s3",
"sentinel",
"serve",
"server",
"service",
"session",
"sessions",
"space",
"spaces",
"static",
"storage",
"value"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"check-coverage": true,
"lines": 93,
"functions": 100,
"branches": 69,
"reporter": [
"lcov",
"html",
"text"
]
},
"repository": {
"type": "git",
"url": "https://github.com/koajs/cash"
},
"scripts": {
"ava": "cross-env NODE_ENV=test ava",
"lint": "xo --fix && remark . -qfo && fixpack",
"nyc": "cross-env NODE_ENV=test nyc ava",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run nyc"
}
}