-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"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/step-security/action-semantic-pull-request.git"
},
"keywords": [
"github-action",
"conventional-commits"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/step-security/action-semantic-pull-request/issues"
},
"homepage": "https://github.com/step-security/action-semantic-pull-request#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"axios": "^1.13.5",
"conventional-commit-types": "^3.0.0",
"conventional-commits-parser": "^6.2.0",
"typescript": "^5.9.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "9.33.0",
"eslint-config-molindo": "8.0.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"rollup": "^4.46.2",
"vitest": "^3.2.4"
},
"engines": {
"node": "^24.0.0"
},
"prettier": "eslint-config-molindo/.prettierrc.json"
}