-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "fastify-better-flash",
"version": "0.0.2",
"description": "Flash message plugin for Fastify",
"main": "index.js",
"type": "commonjs",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run unit && npm run test:typescript",
"lint": "standard && npm run lint:typescript",
"lint:typescript": "ts-standard",
"test:typescript": "tsd",
"unit": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JacopoPatroclo/fastify-better-flash"
},
"keywords": [
"fastify",
"flash",
"messages"
],
"author": "Jacopo Martinelli",
"license": "MIT",
"types": "index.d.ts",
"dependencies": {
"fastify-plugin": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.4.4",
"fastify": "^4.0.0-rc.2",
"fastify-tsconfig": "^2.0.0",
"prettier": "^3.2.5",
"standard": "^17.0.0",
"ts-standard": "^12.0.1",
"tsd": "^0.30.4",
"typescript": "^5.3.3",
"@fastify/secure-session": "^7.0.0"
},
"tsd": {
"directory": "test"
}
}