-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.32 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.32 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
{
"name": "action-commitlint-pull-request-title",
"version": "0.0.1",
"description": "Ensure your PR title matches the commitlint spec.",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"test": "jest src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dreampulse/action-commitlint-pull-request-title.git"
},
"keywords": [
"github-action",
"commitlint"
],
"author": "Jonathan Häberle <jonathan.haeberle@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dreampulse/action-commitlint-pull-request-title/issues"
},
"homepage": "https://github.com/dreampulse/action-commitlint-pull-request-title",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^1.1.0",
"conventional-changelog-conventionalcommits": "4.4.0",
"conventional-commit-types": "^3.0.0",
"conventional-commits-parser": "^3.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",
"eslint": "7.9.0",
"eslint-config-molindo": "5.0.1",
"jest": "24.9.0",
"semantic-release": "17.1.1"
},
"engines": {
"node": "^12.0.0"
}
}