-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "jenkins-status-alerts-and-reporting",
"version": "1.4.0",
"description": "Create a Github Action that monitors the status of Jenkins and generates Markdown reports for your inventory. It also alerts you when the nodes are not functioning properly.",
"main": "src/index.js",
"private": true,
"scripts": {
"build": "ncc build src/index.js -o dist",
"test": "FORCE_COLOR=3 jest --verbose",
"test:update": "FORCE_COLOR=3 jest --verbose --u",
"test:coverage": "FORCE_COLOR=3 jest --verbose --coverage",
"test:watch": "FORCE_COLOR=3 jest --verbose --watchAll",
"lint": "standard",
"lint:fix": "standard --fix",
"format:fix": "prettier-standard --format",
"format": "prettier-standard --check"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"dist/**"
]
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"@actions/github": "5.1.1",
"@ulisesgascon/is-different": "1.0.0",
"@ulisesgascon/normalize-boolean": "1.0.0",
"@ulisesgascon/text-tags-manager": "1.0.0",
"@vercel/ncc": "0.36.1",
"ajv": "8.12.0",
"ejs": "3.1.9"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"jest": "29.4.2",
"jest-config": "29.4.2",
"prettier-standard": "16.4.1",
"standard": "17.0.0"
}
}