-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.1 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": "logflare-log-action",
"private": true,
"version": "0.0.0-development",
"description": "GitHub Action to create a log in a Logflare source",
"main": "index.js",
"scripts": {
"test": "node test.js",
"build": "ncc build index.js -o dist"
},
"keywords": [
"action"
],
"repository": "https://github.com/logflare/action",
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"got": "^11.8.3"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@zeit/ncc": "^0.22.3",
"semantic-release": "^18.0.1",
"nock": "^13.2.1",
"uvu": "^0.5.2"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": [
"dist/index.js"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
],
"@semantic-release/github"
]
}
}