forked from actions/create-github-app-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "create-github-app-token-aws",
"private": true,
"type": "module",
"version": "1.0.0",
"description": "GitHub Action for creating a GitHub App Installation Access Token using AWS KMS",
"scripts": {
"build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node20.0.0 --packages=bundle",
"test": "c8 --lines 95 ava tests/index.js",
"coverage": "c8 report --reporter html",
"postcoverage": "open-cli coverage/index.html"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-sdk/client-kms": "^3.632.0",
"@octokit/request": "^9.0.1",
"p-retry": "^6.2.0",
"undici": "^6.19.2"
},
"devDependencies": {
"@sinonjs/fake-timers": "^11.2.2",
"ava": "^6.1.3",
"c8": "^10.1.2",
"dotenv": "^16.4.5",
"esbuild": "^0.22.0",
"execa": "^9.3.0",
"open-cli": "^8.0.0",
"yaml": "^2.4.5"
},
"release": {
"branches": [
"+([0-9]).x",
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
"semantic-release-plugin-github-breaking-version-tag",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"dist/*"
],
"message": "build(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"main": "main.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"author": ""
}