-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 936 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
{
"name": "fastify-get-only",
"version": "1.0.0",
"description": "Small plugin used in fastify app to make the app only accept GET requests",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run unit && npm run test:typescript",
"lint": "standard --fix && npm run lint:typescript",
"lint:typescript": "ts-standard --fix",
"test:typescript": "tsd",
"unit": "tap test/**/*.test.js"
},
"keywords": ["fastify", "fastify-get-only"],
"author": "daniele.fedeli",
"license": "MIT",
"types": "index.d.ts",
"dependencies": {
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"@types/node": "^15.0.0",
"fastify": "^3.25.0",
"fastify-tsconfig": "^1.0.1",
"standard": "^16.0.3",
"tap": "^15.0.9",
"ts-standard": "^10.0.0",
"tsd": "^0.15.1",
"typescript": "^4.2.4"
},
"tsd": {
"directory": "test"
}
}