-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 KB
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
{
"name": "fastify-405",
"version": "4.0.0",
"description": "Add 405 HTTP status to your routes",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "standard && npm run lint:typescript",
"lint:fix": "standard --fix && npm run lint:typescript -- --fix",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin *.ts test/**/*.ts",
"test": "borp --coverage --check-coverage && npm run test:typescript",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eomm/fastify-405.git"
},
"keywords": [
"405",
"fastify-plugin",
"http-status"
],
"author": "Manuel Spigolon <behemoth89@gmail.com> (https://github.com/Eomm)",
"funding": "https://github.com/Eomm/fastify-405?sponsor=1",
"license": "MIT",
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"borp": "^0.19.0",
"fastify": "^5.0.0",
"standard": "^17.0.0",
"tsd": "^0.31.0"
},
"dependencies": {
"fastify-plugin": "^5.0.0"
},
"bugs": {
"url": "https://github.com/Eomm/fastify-405/issues"
},
"homepage": "https://github.com/Eomm/fastify-405#readme",
"tsd": {
"directory": "test/types"
}
}