-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "fastify-response-caching",
"version": "0.0.4",
"description": "A Fastify plugin for caching the response",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint"
]
},
"scripts": {
"test": "tap --cov *.test.js",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeaholicguy/fastify-response-caching.git"
},
"keywords": [
"fastify",
"fastify-response-caching",
"response-caching",
"caching",
"cache"
],
"author": "Hoang Nguyen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeaholicguy/fastify-response-caching/issues"
},
"homepage": "https://github.com/codeaholicguy/fastify-response-caching#readme",
"dependencies": {
"fastify-plugin": "^2.3.4",
"keyv": "^4.0.2"
},
"devDependencies": {
"axios": "^0.20.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fastify": "^3.4.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"tap": "^14.10.8"
}
}