-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 2.57 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "prcolinter",
"version": "1.4.4",
"description": "Easily lint each commit for your PRs against the Conventional Commit spec based on configurable Linter rules.",
"main": "index.js",
"scripts": {
"build": "ncc build index.js",
"release": "release-it --ci",
"prerelease": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Matthew J Martin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:matmar10/prcolinter.git"
},
"keywords": [
"Github",
"Actions",
"Github Actions",
"Workflow",
"Github Workflow",
"Conventional Commit",
"Commit Messages",
"Lint",
"Check",
"Enforce",
"Code Quality"
],
"devDependencies": {
"@release-it/conventional-changelog": "^3.3.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^5.16.0",
"eslint-plugin-es-beautifier": "^1.0.1",
"release-it": "^14.11.6"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@commitlint/config-conventional": "^13.2.0",
"@commitlint/lint": "^13.2.0",
"moment": "^2.29.1"
},
"release-it": {
"ci": true,
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integration"
}
]
}
}
},
"git": {
"commit": true,
"tag": true,
"push": true,
"requireUpstream": false
},
"github": {
"release": true
},
"npm": {
"publish": true
}
}
}