forked from aslafy-z/conventional-pr-title-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "conventional-pr-title-action",
"version": "0.1.0",
"description": "Ensure your PR title matches the Conventional Commits spec.",
"main": "src/index.js",
"scripts": {
"test": "jest src",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aslafy-z/conventional-pr-title-action.git"
},
"keywords": [
"github-action",
"conventional-commits"
],
"author": "Zadkiel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aslafy-z/conventional-pr-title-action/issues"
},
"homepage": "https://github.com/aslafy-z/conventional-pr-title-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.0.0",
"conventional-commit-types": "^3.0.0",
"conventional-commits-parser": "^3.2.0",
"npm-package-arg": "^8.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.1",
"conventional-changelog-angular": "^5.0.13",
"jest": "^27.3.1",
"semantic-release": "^17.2.2"
},
"engines": {
"node": ">= 12.0.0"
}
}