-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.75 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
{
"name": "wire-cli",
"version": "1.4.12",
"description": "An extendable ProcessWire command line interface",
"main": "commitlint.config.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "phpunit",
"commit": "commit",
"release": "release-it --no-npm.publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wirecli/wire-cli.git"
},
"keywords": [
"processwire",
"cli",
"shell"
],
"author": "Joani Eizmendi (flydev-fr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wirecli/wire-cli/issues"
},
"homepage": "https://github.com/wirecli/wire-cli#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@commitlint/prompt-cli": "^17.6.6",
"@release-it/bumper": "^5.0.0",
"@release-it/conventional-changelog": "^7.0.0",
"release-it": "^16.1.0"
},
"release-it": {
"github": {
"release": true
},
"git": {
"requireBranch": "main",
"requireCleanWorkingDir": false
},
"hooks": {
"before:init": [
"git pull"
],
"after:bump": [
"npx auto-changelog -p"
]
},
"plugins": {
"@release-it/bumper": {
"out": [
"composer.json",
"./app/version.json"
]
},
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"header": "# Changelog",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "🚀 Features"
},
{
"type": "fix",
"section": "🐞 Bug Fixes"
}
]
}
}
}
}
}