generated from probot/example-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 922 Bytes
/
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
{
"name": "github-app",
"version": "0.0.0-development",
"description": "GitHub App template repository",
"private": true,
"packageManager": "pnpm@9.13.2",
"author": "Marcus R. Brown <contact@marcusrbrown.com>",
"license": "MIT",
"repository": "github:bfra-me/github-app",
"engines": {
"node": "^16.20.0 || >=18"
},
"scripts": {
"test": "node test/app.test.js || true",
"build": "ncc build index.js -o dist",
"check-format": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"@probot/adapter-github-actions": "4.0.0",
"probot": "13.4.0"
},
"devDependencies": {
"@semantic-release/git": "10.0.1",
"@vercel/ncc": "0.38.3",
"conventional-changelog-conventionalcommits": "8.0.0",
"nock": "13.5.6",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"uvu": "0.5.6"
},
"jest": {
"testEnvironment": "node"
}
}