This repository has been archived by the owner on Mar 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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
{
"name": "github-action-oss-scanner",
"version": "0.0.0-development",
"description": "",
"keywords": [
"github-enterprise-cloud",
"github-actions",
"automation",
"scanner"
],
"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/github-action-oss-scanner",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"main": "action.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "npx @vercel/ncc build action.js --out dist --license licenses.txt --quiet",
"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.6.0",
"@octokit/core": "^3.5.1",
"@octokit/plugin-enterprise-cloud": "^6.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@github/prettier-config": "^0.0.4",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-github": "^4.3.5",
"husky": "^7.0.4",
"rimraf": "^3.0.2"
},
"prettier": "@github/prettier-config",
"husky": {
"hooks": {
"pre-commit": "./.github/husky/pre-commit",
"pre-push": "./.github/husky/pre-push"
}
}
}