-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
105 lines (105 loc) · 2.55 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
{
"name": "casile",
"version": "0.14.5",
"description": "The CaSILE toolkit, a book publishing workflow employing SILE and other wizardry",
"main": "casile",
"scripts": {
"test": "make test",
"lint": "make lint",
"release": "commit-and-tag-version",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sile-typesetter/casile.git"
},
"author": "Caleb Maclennan <caleb@alerque.com>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/sile-typesetter/casile/issues"
},
"homepage": "https://github.com/sile-typesetter/casile",
"dependencies": {
"bible-passage-reference-parser": "https://github.com/alerque/Bible-Passage-Reference-Parser",
"bible-reference-formatter": "https://github.com/alerque/Bible-Reference-Formatter",
"svg-modify": "^0.0.12"
},
"devDependencies": {
"@commitlint/cli": "^19.6",
"@commitlint/config-conventional": "^19.6",
"@commitlint/prompt": "^19.6",
"@iarna/toml": "^2.2",
"commitizen": "^4.3",
"conventional-changelog-cli": "^5.0",
"eslint": "^9.15",
"eslint-config-standard": "^17.1",
"eslint-plugin-import": "^2.31",
"eslint-plugin-node": "^11.1",
"eslint-plugin-promise": "^7.2",
"husky": "^9.1",
"commit-and-tag-version": "^12.5",
"yaml": "^2.6"
},
"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
}
]
}
}