-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "fastify-raw-body",
"version": "5.0.0",
"description": "Request raw body",
"main": "plugin.js",
"types": "plugin.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "tap --show-full-coverage && tsd",
"test:types": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eomm/fastify-raw-body.git"
},
"keywords": [
"raw-body",
"body",
"request",
"fastify",
"fastify-plugin",
"fastify-raw-body"
],
"author": "Manuel Spigolon <[email protected]> (https://github.com/Eomm)",
"funding": "https://github.com/Eomm/fastify-raw-body?sponsor=1",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eomm/fastify-raw-body/issues"
},
"engines": {
"node": ">= 10"
},
"homepage": "https://github.com/Eomm/fastify-raw-body#readme",
"devDependencies": {
"@types/node": "^22.0.0",
"fastify": "^5.0.0",
"standard": "^17.0.0",
"tap": "^21.0.0",
"tsd": "^0.31.0"
},
"dependencies": {
"fastify-plugin": "^5.0.0",
"raw-body": "^3.0.0",
"secure-json-parse": "^3.0.1"
},
"tsd": {
"directory": "test/types"
}
}