-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 963 Bytes
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": "gha-outdated",
"version": "1.0.8",
"description": "Check for outdated GitHub Actions in your workflow files",
"main": "lib/index.js",
"bin": {
"gha-outdated": "bin/index.js"
},
"files": [
"bin/",
"lib/"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test",
"coverage": "c8 node --test",
"lint": "eslint .",
"check": "npm run lint && npm run coverage"
},
"keywords": [
"github",
"actions",
"workflow",
"version",
"check",
"outdated"
],
"author": "Josh F.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jpitty03/gha-outdated.git"
},
"bugs": {
"url": "https://github.com/jpitty03/gha-outdated/issues"
},
"homepage": "https://github.com/jpitty03/gha-outdated#readme",
"devDependencies": {
"@eslint/js": "^9.0.0",
"c8": "^10.0.0",
"eslint": "^9.0.0",
"globals": "^16.0.0"
}
}