-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "cle-roboto",
"version": "1.0.0",
"private": true,
"description": "A Probot app for the github organisation clEsperanto.",
"author": "Stephane Rigaud (https://x.com/strigaud)",
"license": "ISC",
"homepage": "github:clEsperanto/cle-roboto-app",
"keywords": [
"probot",
"github",
"clesperanto"
],
"scripts": {
"build": "ncc build index.cjs -o dist",
"test": "node --test"
},
"dependencies": {
"@probot/adapter-github-actions": "^4.0.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@vercel/ncc": "^0.34.0",
"nock": "^14.0.0-beta.5",
"semantic-release": "^23.0.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": [
"dist/index.cjs"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
],
"@semantic-release/github"
]
},
"type": "module"
}