forked from mooyoul/melon-ticket-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "melon-ticket-actions",
"version": "0.1.0",
"description": "GitHub action that notifies ticket availability in melon ticket service",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "tslint index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mooyoul/melon-ticket-actions.git"
},
"keywords": [
"github-actions",
"typescript"
],
"author": "MooYeol Prescott Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mooyoul/melon-ticket-actions/issues"
},
"homepage": "https://github.com/mooyoul/melon-ticket-actions#readme",
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.1",
"@semantic-release/release-notes-generator": "9.0.3",
"@types/node": "10.17.60",
"@vingle/commitlint-preset": "1.0.3",
"@vingle/tslint-preset": "1.0.1",
"chai": "4.4.1",
"husky": "4.3.8",
"semantic-release": "17.4.7",
"tslint": "5.20.1",
"typescript": "3.9.10"
},
"dependencies": {
"@actions/core": "^1.1.1",
"@slack/webhook": "^5.0.2",
"axios": "^0.27.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@vingle/commitlint-preset"
]
}
}