-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 871 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 871 Bytes
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
{
"name": "fastify-xml-body-parser",
"version": "3.0.0",
"description": "Fastify plugin to parse XML payload into JS object",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node --test test/*.test.js"
},
"keywords": [
"fastify",
"xml",
"body",
"plugin",
"parse"
],
"author": "Amit Gupta (https://amitkumargupta.work)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NaturalIntelligence/fastify-xml-body-parser.git"
},
"homepage": "https://github.com/NaturalIntelligence/fastify-xml-body-parser",
"dependencies": {
"@nodable/flexible-xml-parser": "^1.0.1",
"fastify-plugin": "^5.1.0"
},
"devDependencies": {
"fastify": "^5.8.4"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/NaturalIntelligence"
}
]
}