-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.61 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
{
"name": "actionbot",
"version": "1.1.0",
"private": true,
"description": "Github Action Policy Checker as a Github Action",
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/main.ts -o lib",
"clean": "rm -rf lib",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map",
"test": "jest",
"version": "auto-changelog -p && git add CHANGELOG.md && git commit -m 'chore: update changelog' && git tag -a v$(node -p \"require('./package.json').version\") -m 'Version $(node -p \"require('./package.json').version\")'",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Contrast-Security-OSS/actionbot.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Contrast Security Inc",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "2.0.3",
"@actions/github": "9.1.1",
"@octokit/rest": "22.0.1",
"@types/js-yaml": "4.0.9",
"@types/node-fetch": "2.6.13",
"node-fetch": "3.3.2",
"octokit": "5.0.5"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "25.6.0",
"@typescript-eslint/parser": "8.59.1",
"@vercel/ncc": "0.38.4",
"auto-changelog": "2.5.0",
"eslint": "9.39.4",
"eslint-plugin-github": "6.0.0",
"eslint-plugin-jest": "29.15.2",
"jest": "30.3.0",
"prettier": "3.8.3",
"ts-jest": "29.4.9",
"typescript": "5.9.3"
}
}