-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·43 lines (43 loc) · 956 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
37
38
39
40
41
42
43
{
"name": "fastify-datadog",
"version": "0.0.0-semantic-release",
"description": "module fastify-datadog",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "jest --coverage",
"test:typescript": "tsd",
"posttest": "npm run lint",
"lint": "standard",
"lint:fix": "standard --fix"
},
"keywords": [
"datadog",
"fastify",
"plugin",
"statsd"
],
"author": "herrmannplatz <rene@herrmannplatz.de>",
"license": "MIT",
"dependencies": {
"fastify-plugin": "^4.5.1"
},
"devDependencies": {
"@types/node": "^20.10.4",
"fastify": "^4.24.3",
"hot-shots": "^10.0.0",
"jest": "^29.7.0",
"standard": "^17.1.0",
"tsd": "^0.29.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/herrmannplatz/fastify-datadog.git"
},
"release": {
"branches": [
"main"
]
}
}