This repository has been archived by the owner on Sep 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "report-action-permissions",
"version": "2.0.3",
"description": "Action to create a CSV or Markdown report of GitHub Actions permissions",
"keywords": [],
"author": {
"name": "GitHub Professional Services",
"email": "[email protected]",
"url": "https://services.github.com"
},
"contributors": [
{
"name": "Stefan Stölzle",
"email": "[email protected]",
"url": "https://github.com/stoe"
}
],
"license": "MIT",
"repository": "github:ActionsDesk/report-action-permissions",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"main": "action.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "npx @vercel/ncc build action.js --out dist --license licenses.txt --quiet --minify",
"format": "npx prettier --config-precedence prefer-file --write . && eslint . --fix",
"pretest": "npx eslint-config-prettier .eslintrc.json",
"test": "eslint .",
"prepare": "husky install ./.github/husky"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"@stoe/action-permissions-cli": "^2.0.3"
},
"devDependencies": {
"@github/prettier-config": "^0.0.4",
"@vercel/ncc": "^0.34.0",
"eslint": "^7.32.0, <9",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-github": "^4.3.7",
"husky": "^8.0.1",
"rimraf": "^3.0.2"
},
"prettier": "@github/prettier-config",
"husky": {
"hooks": {
"pre-commit": "./.github/husky/pre-commit",
"pre-push": "./.github/husky/pre-push"
}
}
}