-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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
{
"name": "approver",
"description": "approver action",
"author": "patricklubach",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"env": "docker run -it --rm -v $PWD:/workspace --entrypoint scripts/ci.sh --workdir /workspace node:23",
"update:lock": "npm update --save --include=dev",
"dev": "npm ci --include=dev && npm run bundle",
"bundle": "npm run format:write && npm run package",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint .",
"package": "npx ncc build src/index.js -o dist --source-map --license licenses.txt",
"test:local:check": "act pull_request -e event.pull_request_review.json -W .github/workflows/check_reviews.yaml -j 'check_reviews' -s GITHUB_TOKEN=\"$(gh auth token)\""
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"dependencies": {
"@actions/core": "^1.11.1",
"@octokit/action": "^7.0.0",
"@octokit/core": "^6.1.3",
"octokit": "^4.1.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"jest": "^29.7.0"
},
"type": "module"
}