-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.81 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
{
"name": "emusk",
"version": "0.3.3",
"description": "He is just a modulary guy for checking service health",
"main": "src/index.js",
"bin": {
"emusk": "src/index.js"
},
"files": [
"src",
"README.md"
],
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"standard": "standard",
"standard:fix": "standard --fix",
"make-coverage-badge": "make-coverage-badge --output-path ./coverage-badge.svg"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"author": "j-catania <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/j-catania/emusk/issues"
},
"homepage": "https://github.com/j-catania/emusk#readme",
"dependencies": {
"commander": "^11.0.0",
"discord-webhook-node": "^1.1.8",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"prom-client": "^15.1.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.6.4",
"jest-junit": "^16.0.0",
"make-coverage-badge": "^1.2.0",
"standard": "^17.1.0"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json-summary",
"json",
"lcov"
],
"reporters": [
"jest-junit"
]
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/j-catania/emusk.git"
},
"keywords": [
"health",
"health-check",
"checker",
"discord",
"smtp",
"email",
"teams"
],
"standard": {
"env": [
"jest"
]
}
}