-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.17 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-lcache",
"version": "2.2.1",
"description": "Light cache plugin for fastify",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npx jest",
"lint": "npx eslint .",
"prebuild": "rm -fr dist",
"build": "npx tsc -p tsconfig.build.json"
},
"keywords": [
"fastify",
"fastify-plugin",
"cache",
"light-cache"
],
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/denbon05/fastify-lcache.git"
},
"author": {
"name": "Denys Bondarenko",
"email": "denisamigoua@gmail.com"
},
"license": "MIT",
"engines": {
"node": ">=16.x"
},
"peerDependencies": {
"fastify": ">=4.10.0"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-plugin-prettier": "^5.2.1",
"fastify": "^4.29.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.8.1",
"typescript": "^5.2.2"
},
"dependencies": {
"fastify-plugin": "^3.0.1"
}
}