forked from ossf/scorecard-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.9 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
{
"name": "openssf-scorecard-monitor",
"version": "2.0.0-beta8",
"description": "A simple way to monitor OpenSSF Scorecard at organization level",
"main": "src/index.js",
"private": true,
"scripts": {
"build": "ncc build src/action.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",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"dist/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ossf/scorecard-monitor"
},
"keywords": [
"openssf-scorecard",
"maintainers"
],
"author": "Ulises Gascon",
"bugs": {
"url": "https://github.com/ossf/scorecard-monitor"
},
"homepage": "https://github.com/ossf/scorecard-monitor",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"@ulisesgascon/array-to-chunks": "2.0.0",
"@ulisesgascon/is-different": "2.0.0",
"@ulisesgascon/normalize-boolean": "2.0.0",
"@ulisesgascon/soft-assign-deep-property": "2.0.0",
"@ulisesgascon/text-tags-manager": "2.0.0",
"@vercel/ncc": "0.38.1",
"ajv": "8.12.0",
"ajv-formats": "2.1.1",
"ejs": "3.1.10",
"got": "11.8.6"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.4",
"@commitlint/config-conventional": "18.4.4",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-config": "29.7.0",
"standard": "17.1.0",
"standard-version": "9.5.0"
}
}