-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "action-semantic-pull-request",
"version": "0.0.0",
"description": "Ensure your PR title matches the Conventional Commits spec.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"test": "jest src",
"build": "rm -rf dist && ncc build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amannn/action-semantic-pull-request.git"
},
"keywords": [
"github-action",
"conventional-commits"
],
"author": "Jan Amann <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/amannn/action-semantic-pull-request/issues"
},
"homepage": "https://github.com/amannn/action-semantic-pull-request#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"conventional-changelog-conventionalcommits": "5.0.0",
"conventional-commit-types": "^3.0.0",
"conventional-commits-parser": "^3.2.4"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/release-notes-generator": "10.0.3",
"@vercel/ncc": "^0.36.1",
"eslint": "8.36.0",
"eslint-config-molindo": "6.0.0",
"jest": "29.5.0",
"semantic-release": "^19.0.5",
"semantic-release-major-tag": "0.3.2"
},
"engines": {
"node": "^20.0.0"
}
}