forked from voxmedia/github-action-slack-notify-build
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.22 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.22 KB
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
{
"name": "github-action-slack-notify-build",
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
"build": "ncc build index.js",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^6.0.0",
"@slack/web-api": "^7.0.4"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@vercel/ncc": "^0.38.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"lint-staged": {
"**/*.{ts,json,md,yml,js,css,html}": [
"prettier --write"
]
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{}
],
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
]
]
}
}