-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1010 Bytes
/
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
{
"name": "fastify-peekaboo",
"version": "2.3.1",
"description": "fastify plugin for memoize responses by expressive settings",
"main": "src/plugin.js",
"files": [
"src/",
"settings/"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"a-toolbox": "^1.7.3",
"fast-json-stable-stringify": "^2.1.0",
"fastify-plugin": "^3.0.0",
"fs-extra": "^9.1.0",
"superstruct": "^0.8.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"fastify": "^3.12.0",
"got": "^11.8.2",
"pre-commit": "^1.2.2",
"standard": "^16",
"tap": "^14.11.0"
},
"pre-commit": [
"test"
],
"scripts": {
"format": "standard --fix",
"test": "tap --files test/e2e/*.e2e.js test/unit/*.spec.js",
"test-coverage": "tap test/* --cov"
},
"author": "Simone Sanfratello <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/braceslab/fastify-peekaboo.git"
},
"keywords": [
"cache"
]
}