-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.24 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.24 KB
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
{
"name": "github-actions-allow-list-as-code-action",
"version": "3.2.1",
"description": "Automate GitHub Actions allow list for GitHub Enterprise Cloud and Server accounts",
"keywords": [
"github-enterprise-cloud",
"github-actions",
"automation",
"policy-as-code"
],
"author": {
"name": "GitHub Professional Services",
"email": "services@github.com",
"url": "https://services.github.com"
},
"contributors": [
{
"name": "Stefan Stölzle",
"email": "stoe@github.com",
"url": "https://github.com/stoe"
},
{
"name": "Stefan Petrushevski",
"email": "theztefan@github.com",
"url": "https://github.com/theztefan"
},
{
"name": "Damien Hardy",
"email": "digimangos@github.com",
"url": "https://github.com/digimangos"
}
],
"license": "MIT",
"repository": "github:ActionsDesk/github-actions-allow-list-as-code-action",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"main": "action.js",
"scripts": {
"build": "npx @vercel/ncc build action.js -o dist -q -m -s --license licenses.txt",
"format": "npx prettier --config-precedence prefer-file --write . && eslint . --ignore-pattern dist/ --fix",
"prebuild": "rimraf dist",
"prepare": "husky",
"pretest": "npx eslint-config-prettier .eslintrc.json",
"test": "eslint . --ignore-pattern dist/"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.0",
"@octokit/plugin-enterprise-cloud": "^15.2.1",
"@octokit/plugin-enterprise-server": "^20.0.0",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@eslint/markdown": "^8.0.1",
"@github/prettier-config": "^0.0.6",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"proxy-agent": "^8.0.1",
"rimraf": "^6.1.3"
},
"husky": {
"hooks": {
"pre-commit": ".husky/pre-commit",
"pre-push": ".husky/pre-push"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run format",
"npm run test"
],
"*.{json,md}": [
"npm run format"
]
},
"prettier": "@github/prettier-config"
}