forked from herrmannplatz/fastify-datadog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.17 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
51
52
{
"name": "@condenast/fastify-datadog",
"version": "0.0.2",
"description": "module fastify-datadog",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"commit": "git-cz",
"test": "jest --coverage && tsd",
"posttest": "standard",
"precommit": "npm test",
"prepare": "husky install"
},
"keywords": [
"datadog",
"fastify",
"plugin",
"statsd"
],
"author": "herrmannplatz <rene@herrmannplatz.de>",
"license": "MIT",
"dependencies": {
"fastify-plugin": "^1.6.1"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@types/node": "^14.0.14",
"commitizen": "^3.0.4",
"cz-conventional-changelog": "^2.1.0",
"fastify": "^3.0.0",
"hot-shots": "^7.7.1",
"husky": "^6.0.0",
"jest": "^26.1.0",
"semantic-release": "^15.12.0",
"standard": "^12.0.1",
"tsd": "^0.13.1",
"typescript": "^3.9.6"
},
"peerDependencies": {
"fastify": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CondeNast/fastify-datadog"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}