-
-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.66 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
{
"name": "action-semantic-pull-request",
"version": "0.0.0",
"description": "Ensure your PR title matches the Conventional Commits spec.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint src && prettier --check src",
"test": "vitest src",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amannn/action-semantic-pull-request.git"
},
"keywords": [
"github-action",
"conventional-commits"
],
"author": "Jan Amann <jan@amann.work>",
"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": "^2.0.1",
"@actions/github": "^6.0.1",
"conventional-changelog-conventionalcommits": "9.1.0",
"conventional-commit-types": "^3.0.0",
"conventional-commits-parser": "^6.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.2",
"@semantic-release/release-notes-generator": "14.1.0",
"eslint": "9.39.2",
"eslint-config-molindo": "8.0.0",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"rollup": "^4.54.0",
"semantic-release": "^25.0.2",
"semantic-release-major-tag": "0.3.2",
"vitest": "^4.0.16"
},
"engines": {
"node": "^24.0.0"
},
"prettier": "eslint-config-molindo/.prettierrc.json"
}