-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.35 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@goodwaygroup/lib-hapi-good-tracer",
"version": "0.6.3",
"description": "Hapi plugin for injecting tracer info into response headers and logs",
"main": "index.js",
"scripts": {
"test": "npm run test:jest -- --coverage",
"test:jest": "cross-env NODE_ENV=test jest ",
"test:watch": "npm run test:jest -- --watch",
"test:results": "open ./coverage/lcov-report/index.html",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"version": "git-chglog -o CHANGELOG.md --next-tag v$(grep '\\\"version\\\":' package.json | grep -v git-chglog | awk -F '\\\"' '{print $4}') && git add CHANGELOG.md",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoodwayGroup/lib-hapi-good-tracer.git"
},
"author": "https://www.npmjs.com/~clok",
"license": "MIT",
"bugs": {
"url": "https://github.com/GoodwayGroup/lib-hapi-good-tracer/issues"
},
"homepage": "https://github.com/GoodwayGroup/lib-hapi-good-tracer#readme",
"keywords": [
"hapi",
"metrics",
"plugin",
"request",
"trace",
"heaeders",
"instrumentation",
"monitoring"
],
"jest": {
"clearMocks": true,
"coverageDirectory": "<rootDir>/coverage",
"coverageReporters": [
"lcov",
"text",
"text-summary",
"json"
],
"collectCoverageFrom": [
"lib/**/*.{js,jsx,mjs}",
"lib/index.js"
],
"setupFiles": [],
"testMatch": [
"<rootDir>/spec/**/?(*.)(spec|test).{js,jsx,mjs}"
],
"testEnvironment": "node",
"transform": {},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"moduleNameMapper": {},
"modulePaths": [
"<rootDir>/lib"
],
"moduleFileExtensions": [
"web.js",
"mjs",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
},
"devDependencies": {
"@hapi/good": "9.0.1",
"@hapi/good-squeeze": "6.0.0",
"@hapi/hapi": "20.2.1",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-goodway": "3.2.1",
"eslint-plugin-import": "2.25.4",
"husky": "7.0.4",
"jest": "27.4.7",
"nock": "13.2.2"
},
"dependencies": {
"@hapi/boom": "9.1.4",
"@hapi/hoek": "9.2.1",
"axios": "0.25.0",
"debug": "4.3.3",
"lodash": "4.17.21",
"node-cache": "5.1.2",
"uuid": "8.3.2"
}
}