-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.15 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
{
"name": "@goodwaygroup/lib-hapi-rollbar",
"version": "0.6.3",
"description": "Hapi plugin for Rollbar notifications",
"main": "index.js",
"scripts": {
"test": "npm run test:jest -- --coverage",
"test:jest": "jest",
"test:watch": "npm run test:jest -- --watch --coverageReporters=\"lcov\" --coverage",
"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-rollbar.git"
},
"author": "https://www.npmjs.com/~clok",
"license": "MIT",
"bugs": {
"url": "https://github.com/GoodwayGroup/lib-hapi-rollbar/issues"
},
"homepage": "https://github.com/GoodwayGroup/lib-hapi-rollbar#readme",
"keywords": [
"error",
"exceptions",
"hapi",
"instrumentation",
"log",
"logging",
"monitor",
"monitoring",
"plugin",
"rollbar",
"stats"
],
"jest": {
"clearMocks": true,
"coverageDirectory": "<rootDir>/coverage",
"coverageReporters": [
"lcov",
"text",
"text-summary",
"json"
],
"collectCoverageFrom": [
"lib/index.js"
],
"setupFilesAfterEnv": [],
"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/boom": "9.1.2",
"@hapi/hapi": "20.1.3",
"eslint": "7.27.0",
"eslint-config-goodway": "^3.3.0",
"eslint-plugin-import": "^2.29.1",
"husky": "6.0.0",
"jest": "27.0.3",
"nock": "13.1.0"
},
"dependencies": {
"rollbar": "2.26.2"
}
}