-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.72 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
{
"name": "actionbot",
"version": "1.0.8",
"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": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^22.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node-fetch": "^2.6.12",
"@vercel/ncc": "^0.38.4",
"node-fetch": "3.3.2",
"octokit": "^5.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^24.0.13",
"@types/jest": "^30.0.0",
"@types/node": "^24.9.1",
"@typescript-eslint/parser": "^8.26.0",
"@vercel/ncc": "^0.38.4",
"auto-changelog": "^2.5.0",
"eslint": "^9.38.0",
"eslint-plugin-github": "^6.0.0",
"jest": "^30.2.0",
"eslint-plugin-jest": "^29.0.1",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2"
}
}