-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
95 lines (95 loc) · 2.13 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
{
"name": "fontship",
"version": "0.10.0",
"description": "A font development toolkit and collaborative work flow",
"main": "fontship",
"scripts": {
"test": "make test",
"lint": "make lint",
"release": "commit-and-tag-version",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theleagueof/fontship.git"
},
"author": "Caleb Maclennan <caleb@alerque.com>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/theleagueof/fontship/issues"
},
"homepage": "https://github.com/theleagueof/fontship",
"devDependencies": {
"@commitlint/cli": "^19.5",
"@commitlint/config-conventional": "^19.5",
"@commitlint/prompt": "^19.5",
"@iarna/toml": "^2.2",
"commitizen": "^4.3",
"conventional-changelog-cli": "^5.0",
"husky": "^9.9",
"commit-and-tag-version": "^12.4",
"yaml": "^2.5"
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"commit-and-tag-version": {
"bumpFiles": [
{
"filename": "action.yml",
"updater": "build-aux/action-updater.js"
},
{
"filename": "package.json",
"type": "json"
},
{
"filename": "Cargo.toml",
"updater": "build-aux/cargo-updater.js"
}
],
"scripts": {
"postbump": "taplo format Cargo.toml && cargo generate-lockfile --offline",
"postcommit": "git add -u Cargo.lock && git commit --amend --no-edit"
},
"infile": "CHANGELOG.md",
"types": [
{
"type": "feat",
"section": "New Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Behind the Scenes",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"section": "Changes",
"hidden": true
},
{
"type": "perf",
"section": "Optimizations"
},
{
"type": "test",
"hidden": true
}
]
}
}