-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.2 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
{
"name": "yodelay",
"version": "2.1.14",
"description": "Log and send error metrics off with ease.",
"main": "dist/index.js",
"scripts": {
"example": "nodemon --exec babel-node example.js",
"build": "babel --copy-files --out-dir dist src",
"release": "babel --copy-files --out-dir dist src && npm publish",
"test": "nodemon --exec jest --coverage"
},
"author": "Logan Fisher (logan.fisher@parkhub.com)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/loganbfisher/yodelay"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 85,
"lines": 85,
"statements": 85
}
},
"testMatch": [
"**/__tests__/integration/*.integration.test.js"
],
"modulePathIgnorePatterns": [
"dist/*"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/fixtures/"
]
},
"dependencies": {
"moment": "^2.22.2",
"request-promise-native": "^1.0.5",
"unhandled-error": "^1.0.0",
"util": "^0.11.0",
"winston": "^3.1.0",
"winston-transport": "^4.2.0"
},
"keywords": [
"kubernetes",
"microservice",
"logging",
"log",
"grafana",
"prometheus",
"logger",
"metrics",
"uncaught",
"json",
"exceptions",
"alerts",
"alerter"
],
"devDependencies": {
"@parkhub/eslint-config-parkhub-base": "^1.2.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"documentation": "^5.3.5",
"eslint": "^4.10.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.2.0",
"jest": "^21.2.1",
"nodemon": "^1.18.4",
"prettier-eslint-cli": "^4.4.0"
}
}