-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2 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
{
"name": "github-actions-allow-list-as-code-action",
"version": "3.1.0",
"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 . --fix",
"prebuild": "rimraf dist",
"prepare": "husky install ./.github/husky",
"pretest": "npx eslint-config-prettier .eslintrc.json",
"test": "eslint ."
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/plugin-enterprise-cloud": "^13.0.0",
"@octokit/plugin-enterprise-server": "^17.3.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^5.1.3",
"husky": "^9.1.7",
"proxy-agent": "^6.4.0",
"rimraf": "^6.0.1"
},
"husky": {
"hooks": {
"pre-commit": "./.github/husky/pre-commit",
"pre-push": "./.github/husky/pre-push"
}
},
"prettier": "@github/prettier-config"
}