forked from jeromemacias/fastify-xray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "fastify-xray",
"version": "1.0.0",
"description": "Fastify plugin for AWS XRay recording",
"main": "plugin.js",
"types": "plugin.d.ts",
"scripts": {
"test": "tap test/*.test.js && npm run typescript",
"test-ci": "tap --cov test/*.test.js && npm run typescript",
"lint": "standard | snazzy",
"lint-ci": "standard",
"typescript": "tsc --project ./tsconfig.json"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jeromemacias/fastify-xray.git"
},
"files": [
"plugin.d.ts"
],
"keywords": [
"fastify",
"cookie"
],
"author": "Jérôme Macias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeromemacias/fastify-xray/issues"
},
"homepage": "https://github.com/jeromemacias/fastify-xray#readme",
"devDependencies": {
"@types/node": "^14.14.35",
"fastify": "^3.14.0",
"pre-commit": "^1.2.2",
"sinon": "~9.0.2",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"tap": "^14.11.0",
"typescript": "^4.2.3"
},
"dependencies": {
"aws-xray-sdk-core": "^3.2.0",
"fastify-plugin": "^3.0.0"
}
}