codexparser 0.3.1 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -0
- package/README.md +94 -2
- package/RELEASE_NOTES_v0.4.0.md +94 -0
- package/package.json +11 -1
- package/src/core/CodexParser.js +21 -0
- package/src/core/ReferenceParser.js +129 -26
- package/src/data/chapter_verses/daniel.js +4 -0
- package/src/data/chapter_verses/esther.js +12 -1
- package/src/data/lxx-editions.js +58 -0
- package/src/data/versifications/1samuel.js +1 -1
- package/src/data/versifications/2kings.js +117 -0
- package/src/data/versifications/2samuel.js +1 -1
- package/src/data/versifications/daniel.js +28 -0
- package/src/data/versifications/esther.js +114 -0
- package/src/data/versifications/ezekiel.js +37 -37
- package/src/data/versifications/genesis.js +45 -39
- package/src/data/versifications/micah.js +19 -16
- package/src/data/versifications/numbers.js +83 -1
- package/src/data/versifications/psalms.js +12 -12
- package/src/data/versified.js +6 -1
- package/.trunk/configs/.markdownlint.yaml +0 -2
- package/.trunk/trunk.yaml +0 -32
- package/REFACTORING.md +0 -214
- package/RELEASE_NOTES_v0.2.0.md +0 -5
- package/RELEASE_NOTES_v0.3.0.md +0 -32
- package/bibles/kjv.json +0 -194080
- package/bibles/updated_kjv.json +0 -194080
- package/passage-generator.js +0 -25
- package/src/CodexParser.js.backup +0 -1713
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
+
// LXX/Göttingen Genesis 5 has only 31 verses. The content of ENG/MT 5:32
|
|
3
|
+
// ("Noah was 500 years old, and he fathered Shem, Ham, and Japheth")
|
|
4
|
+
// is folded into LXX 6:1, which then continues with the start of ENG/MT 6:1.
|
|
5
|
+
"5:32": {
|
|
6
|
+
lxx: "",
|
|
7
|
+
mt: "5:32",
|
|
8
|
+
eng: "5:32",
|
|
9
|
+
},
|
|
2
10
|
"31:55": {
|
|
3
11
|
lxx: "32:1",
|
|
4
|
-
mt: "
|
|
12
|
+
mt: "32:1",
|
|
5
13
|
eng: "31:55",
|
|
6
14
|
},
|
|
7
15
|
"31:48": {
|
|
@@ -16,171 +24,169 @@ module.exports = {
|
|
|
16
24
|
},
|
|
17
25
|
"32:1": {
|
|
18
26
|
lxx: "32:2",
|
|
19
|
-
mt: "32:
|
|
27
|
+
mt: "32:2",
|
|
20
28
|
eng: "32:1",
|
|
21
29
|
},
|
|
22
30
|
"32:2": {
|
|
23
31
|
lxx: "32:3",
|
|
24
|
-
mt: "32:
|
|
32
|
+
mt: "32:3",
|
|
25
33
|
eng: "32:2",
|
|
26
34
|
},
|
|
27
35
|
"32:3": {
|
|
28
36
|
lxx: "32:4",
|
|
29
|
-
mt: "32:
|
|
37
|
+
mt: "32:4",
|
|
30
38
|
eng: "32:3",
|
|
31
39
|
},
|
|
32
40
|
"32:4": {
|
|
33
41
|
lxx: "32:5",
|
|
34
|
-
mt: "32:
|
|
42
|
+
mt: "32:5",
|
|
35
43
|
eng: "32:4",
|
|
36
44
|
},
|
|
37
45
|
"32:5": {
|
|
38
46
|
lxx: "32:6",
|
|
39
|
-
mt: "32:
|
|
47
|
+
mt: "32:6",
|
|
40
48
|
eng: "32:5",
|
|
41
49
|
},
|
|
42
50
|
"32:6": {
|
|
43
51
|
lxx: "32:7",
|
|
44
|
-
mt: "32:
|
|
52
|
+
mt: "32:7",
|
|
45
53
|
eng: "32:6",
|
|
46
54
|
},
|
|
47
55
|
"32:7": {
|
|
48
56
|
lxx: "32:8",
|
|
49
|
-
mt: "32:
|
|
57
|
+
mt: "32:8",
|
|
50
58
|
eng: "32:7",
|
|
51
59
|
},
|
|
52
60
|
"32:8": {
|
|
53
61
|
lxx: "32:9",
|
|
54
|
-
mt: "32:
|
|
62
|
+
mt: "32:9",
|
|
55
63
|
eng: "32:8",
|
|
56
64
|
},
|
|
57
65
|
"32:9": {
|
|
58
66
|
lxx: "32:10",
|
|
59
|
-
mt: "32:
|
|
67
|
+
mt: "32:10",
|
|
60
68
|
eng: "32:9",
|
|
61
69
|
},
|
|
62
70
|
"32:10": {
|
|
63
71
|
lxx: "32:11",
|
|
64
|
-
mt: "32:
|
|
72
|
+
mt: "32:11",
|
|
65
73
|
eng: "32:10",
|
|
66
74
|
},
|
|
67
75
|
"32:11": {
|
|
68
76
|
lxx: "32:12",
|
|
69
|
-
mt: "32:
|
|
77
|
+
mt: "32:12",
|
|
70
78
|
eng: "32:11",
|
|
71
79
|
},
|
|
72
80
|
"32:12": {
|
|
73
81
|
lxx: "32:13",
|
|
74
|
-
mt: "32:
|
|
82
|
+
mt: "32:13",
|
|
75
83
|
eng: "32:12",
|
|
76
84
|
},
|
|
77
85
|
"32:13": {
|
|
78
86
|
lxx: "32:14",
|
|
79
|
-
mt: "32:
|
|
87
|
+
mt: "32:14",
|
|
80
88
|
eng: "32:13",
|
|
81
89
|
},
|
|
82
90
|
"32:14": {
|
|
83
91
|
lxx: "32:15",
|
|
84
|
-
mt: "32:
|
|
92
|
+
mt: "32:15",
|
|
85
93
|
eng: "32:14",
|
|
86
94
|
},
|
|
87
95
|
"32:15": {
|
|
88
96
|
lxx: "32:16",
|
|
89
|
-
mt: "32:
|
|
97
|
+
mt: "32:16",
|
|
90
98
|
eng: "32:15",
|
|
91
99
|
},
|
|
92
100
|
"32:16": {
|
|
93
101
|
lxx: "32:17",
|
|
94
|
-
mt: "32:
|
|
102
|
+
mt: "32:17",
|
|
95
103
|
eng: "32:16",
|
|
96
104
|
},
|
|
97
105
|
"32:17": {
|
|
98
106
|
lxx: "32:18",
|
|
99
|
-
mt: "32:
|
|
107
|
+
mt: "32:18",
|
|
100
108
|
eng: "32:17",
|
|
101
109
|
},
|
|
102
110
|
"32:18": {
|
|
103
111
|
lxx: "32:19",
|
|
104
|
-
mt: "32:
|
|
112
|
+
mt: "32:19",
|
|
105
113
|
eng: "32:18",
|
|
106
114
|
},
|
|
107
115
|
"32:19": {
|
|
108
116
|
lxx: "32:20",
|
|
109
|
-
mt: "32:
|
|
117
|
+
mt: "32:20",
|
|
110
118
|
eng: "32:19",
|
|
111
119
|
},
|
|
112
120
|
"32:20": {
|
|
113
121
|
lxx: "32:21",
|
|
114
|
-
mt: "32:
|
|
122
|
+
mt: "32:21",
|
|
115
123
|
eng: "32:20",
|
|
116
124
|
},
|
|
117
125
|
"32:21": {
|
|
118
126
|
lxx: "32:22",
|
|
119
|
-
mt: "32:
|
|
127
|
+
mt: "32:22",
|
|
120
128
|
eng: "32:21",
|
|
121
129
|
},
|
|
122
130
|
"32:22": {
|
|
123
131
|
lxx: "32:23",
|
|
124
|
-
mt: "32:
|
|
132
|
+
mt: "32:23",
|
|
125
133
|
eng: "32:22",
|
|
126
134
|
},
|
|
127
135
|
"32:23": {
|
|
128
136
|
lxx: "32:24",
|
|
129
|
-
mt: "32:
|
|
137
|
+
mt: "32:24",
|
|
130
138
|
eng: "32:23",
|
|
131
139
|
},
|
|
132
140
|
"32:24": {
|
|
133
141
|
lxx: "32:25",
|
|
134
|
-
mt: "32:
|
|
142
|
+
mt: "32:25",
|
|
135
143
|
eng: "32:24",
|
|
136
144
|
},
|
|
137
145
|
"32:25": {
|
|
138
146
|
lxx: "32:26",
|
|
139
|
-
mt: "32:
|
|
147
|
+
mt: "32:26",
|
|
140
148
|
eng: "32:25",
|
|
141
149
|
},
|
|
142
150
|
"32:26": {
|
|
143
151
|
lxx: "32:27",
|
|
144
|
-
mt: "32:
|
|
152
|
+
mt: "32:27",
|
|
145
153
|
eng: "32:26",
|
|
146
154
|
},
|
|
147
155
|
"32:27": {
|
|
148
156
|
lxx: "32:28",
|
|
149
|
-
mt: "32:
|
|
157
|
+
mt: "32:28",
|
|
150
158
|
eng: "32:27",
|
|
151
159
|
},
|
|
152
160
|
"32:28": {
|
|
153
161
|
lxx: "32:29",
|
|
154
|
-
mt: "32:
|
|
162
|
+
mt: "32:29",
|
|
155
163
|
eng: "32:28",
|
|
156
164
|
},
|
|
157
165
|
"32:29": {
|
|
158
166
|
lxx: "32:30",
|
|
159
|
-
mt: "32:
|
|
167
|
+
mt: "32:30",
|
|
160
168
|
eng: "32:29",
|
|
161
169
|
},
|
|
162
170
|
"32:30": {
|
|
163
171
|
lxx: "32:31",
|
|
164
|
-
mt: "32:
|
|
172
|
+
mt: "32:31",
|
|
165
173
|
eng: "32:30",
|
|
166
174
|
},
|
|
167
175
|
"32:31": {
|
|
168
176
|
lxx: "32:32",
|
|
169
|
-
mt: "32:
|
|
177
|
+
mt: "32:32",
|
|
170
178
|
eng: "32:31",
|
|
171
179
|
},
|
|
172
180
|
"32:32": {
|
|
173
181
|
lxx: "32:33",
|
|
174
|
-
mt: "32:
|
|
182
|
+
mt: "32:33",
|
|
175
183
|
eng: "32:32",
|
|
176
184
|
},
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
eng: "35:16",
|
|
181
|
-
},
|
|
185
|
+
// Gen 35:16-21 verse split differs slightly between traditions: LXX
|
|
186
|
+
// condenses the Migdal-eder note so MT/ENG 35:21 has no distinct LXX
|
|
187
|
+
// counterpart and MT/ENG 35:22 = LXX 35:21.
|
|
182
188
|
"35:21": {
|
|
183
|
-
lxx: "
|
|
189
|
+
lxx: "",
|
|
184
190
|
mt: "35:21",
|
|
185
191
|
eng: "35:21",
|
|
186
192
|
},
|
|
@@ -1,76 +1,79 @@
|
|
|
1
|
+
// Versification mappings for Micah.
|
|
2
|
+
// ENG Mic 5:1 ("Now muster yourselves in troops") = MT/LXX Mic 4:14.
|
|
3
|
+
// ENG Mic 5:2-15 = MT/LXX Mic 5:1-14. LXX follows the MT chapter division.
|
|
1
4
|
module.exports = {
|
|
2
5
|
"5:1": {
|
|
3
|
-
lxx: "
|
|
4
|
-
mt: "4:
|
|
6
|
+
lxx: "4:14",
|
|
7
|
+
mt: "4:14",
|
|
5
8
|
eng: "5:1",
|
|
6
9
|
},
|
|
7
10
|
"5:2": {
|
|
8
|
-
lxx: "5:
|
|
11
|
+
lxx: "5:1",
|
|
9
12
|
mt: "5:1",
|
|
10
13
|
eng: "5:2",
|
|
11
14
|
},
|
|
12
15
|
"5:3": {
|
|
13
|
-
lxx: "5:
|
|
16
|
+
lxx: "5:2",
|
|
14
17
|
mt: "5:2",
|
|
15
18
|
eng: "5:3",
|
|
16
19
|
},
|
|
17
20
|
"5:4": {
|
|
18
|
-
lxx: "5:
|
|
21
|
+
lxx: "5:3",
|
|
19
22
|
mt: "5:3",
|
|
20
23
|
eng: "5:4",
|
|
21
24
|
},
|
|
22
25
|
"5:5": {
|
|
23
|
-
lxx: "5:
|
|
26
|
+
lxx: "5:4",
|
|
24
27
|
mt: "5:4",
|
|
25
28
|
eng: "5:5",
|
|
26
29
|
},
|
|
27
30
|
"5:6": {
|
|
28
|
-
lxx: "5:
|
|
31
|
+
lxx: "5:5",
|
|
29
32
|
mt: "5:5",
|
|
30
33
|
eng: "5:6",
|
|
31
34
|
},
|
|
32
35
|
"5:7": {
|
|
33
|
-
lxx: "5:
|
|
36
|
+
lxx: "5:6",
|
|
34
37
|
mt: "5:6",
|
|
35
38
|
eng: "5:7",
|
|
36
39
|
},
|
|
37
40
|
"5:8": {
|
|
38
|
-
lxx: "5:
|
|
41
|
+
lxx: "5:7",
|
|
39
42
|
mt: "5:7",
|
|
40
43
|
eng: "5:8",
|
|
41
44
|
},
|
|
42
45
|
"5:9": {
|
|
43
|
-
lxx: "5:
|
|
46
|
+
lxx: "5:8",
|
|
44
47
|
mt: "5:8",
|
|
45
48
|
eng: "5:9",
|
|
46
49
|
},
|
|
47
50
|
"5:10": {
|
|
48
|
-
lxx: "5:
|
|
51
|
+
lxx: "5:9",
|
|
49
52
|
mt: "5:9",
|
|
50
53
|
eng: "5:10",
|
|
51
54
|
},
|
|
52
55
|
"5:11": {
|
|
53
|
-
lxx: "5:
|
|
56
|
+
lxx: "5:10",
|
|
54
57
|
mt: "5:10",
|
|
55
58
|
eng: "5:11",
|
|
56
59
|
},
|
|
57
60
|
"5:12": {
|
|
58
|
-
lxx: "5:
|
|
61
|
+
lxx: "5:11",
|
|
59
62
|
mt: "5:11",
|
|
60
63
|
eng: "5:12",
|
|
61
64
|
},
|
|
62
65
|
"5:13": {
|
|
63
|
-
lxx: "5:
|
|
66
|
+
lxx: "5:12",
|
|
64
67
|
mt: "5:12",
|
|
65
68
|
eng: "5:13",
|
|
66
69
|
},
|
|
67
70
|
"5:14": {
|
|
68
|
-
lxx: "5:
|
|
71
|
+
lxx: "5:13",
|
|
69
72
|
mt: "5:13",
|
|
70
73
|
eng: "5:14",
|
|
71
74
|
},
|
|
72
75
|
"5:15": {
|
|
73
|
-
lxx: "5:
|
|
76
|
+
lxx: "5:14",
|
|
74
77
|
mt: "5:14",
|
|
75
78
|
eng: "5:15",
|
|
76
79
|
},
|
|
@@ -389,9 +389,91 @@ module.exports = {
|
|
|
389
389
|
mt: "26:43",
|
|
390
390
|
eng: "26:43",
|
|
391
391
|
},
|
|
392
|
+
// ENG Num 29:40 = MT/LXX 30:1; ENG 30:1-16 = MT/LXX 30:2-17.
|
|
393
|
+
// (LXX follows the Hebrew chapter division here.)
|
|
392
394
|
"29:40": {
|
|
393
|
-
lxx: "
|
|
395
|
+
lxx: "30:1",
|
|
394
396
|
mt: "30:1",
|
|
397
|
+
eng: "29:40",
|
|
398
|
+
},
|
|
399
|
+
"30:1": {
|
|
400
|
+
lxx: "30:2",
|
|
401
|
+
mt: "30:2",
|
|
395
402
|
eng: "30:1",
|
|
396
403
|
},
|
|
404
|
+
"30:2": {
|
|
405
|
+
lxx: "30:3",
|
|
406
|
+
mt: "30:3",
|
|
407
|
+
eng: "30:2",
|
|
408
|
+
},
|
|
409
|
+
"30:3": {
|
|
410
|
+
lxx: "30:4",
|
|
411
|
+
mt: "30:4",
|
|
412
|
+
eng: "30:3",
|
|
413
|
+
},
|
|
414
|
+
"30:4": {
|
|
415
|
+
lxx: "30:5",
|
|
416
|
+
mt: "30:5",
|
|
417
|
+
eng: "30:4",
|
|
418
|
+
},
|
|
419
|
+
"30:5": {
|
|
420
|
+
lxx: "30:6",
|
|
421
|
+
mt: "30:6",
|
|
422
|
+
eng: "30:5",
|
|
423
|
+
},
|
|
424
|
+
"30:6": {
|
|
425
|
+
lxx: "30:7",
|
|
426
|
+
mt: "30:7",
|
|
427
|
+
eng: "30:6",
|
|
428
|
+
},
|
|
429
|
+
"30:7": {
|
|
430
|
+
lxx: "30:8",
|
|
431
|
+
mt: "30:8",
|
|
432
|
+
eng: "30:7",
|
|
433
|
+
},
|
|
434
|
+
"30:8": {
|
|
435
|
+
lxx: "30:9",
|
|
436
|
+
mt: "30:9",
|
|
437
|
+
eng: "30:8",
|
|
438
|
+
},
|
|
439
|
+
"30:9": {
|
|
440
|
+
lxx: "30:10",
|
|
441
|
+
mt: "30:10",
|
|
442
|
+
eng: "30:9",
|
|
443
|
+
},
|
|
444
|
+
"30:10": {
|
|
445
|
+
lxx: "30:11",
|
|
446
|
+
mt: "30:11",
|
|
447
|
+
eng: "30:10",
|
|
448
|
+
},
|
|
449
|
+
"30:11": {
|
|
450
|
+
lxx: "30:12",
|
|
451
|
+
mt: "30:12",
|
|
452
|
+
eng: "30:11",
|
|
453
|
+
},
|
|
454
|
+
"30:12": {
|
|
455
|
+
lxx: "30:13",
|
|
456
|
+
mt: "30:13",
|
|
457
|
+
eng: "30:12",
|
|
458
|
+
},
|
|
459
|
+
"30:13": {
|
|
460
|
+
lxx: "30:14",
|
|
461
|
+
mt: "30:14",
|
|
462
|
+
eng: "30:13",
|
|
463
|
+
},
|
|
464
|
+
"30:14": {
|
|
465
|
+
lxx: "30:15",
|
|
466
|
+
mt: "30:15",
|
|
467
|
+
eng: "30:14",
|
|
468
|
+
},
|
|
469
|
+
"30:15": {
|
|
470
|
+
lxx: "30:16",
|
|
471
|
+
mt: "30:16",
|
|
472
|
+
eng: "30:15",
|
|
473
|
+
},
|
|
474
|
+
"30:16": {
|
|
475
|
+
lxx: "30:17",
|
|
476
|
+
mt: "30:17",
|
|
477
|
+
eng: "30:16",
|
|
478
|
+
},
|
|
397
479
|
}
|
|
@@ -7233,7 +7233,7 @@ module.exports = {
|
|
|
7233
7233
|
},
|
|
7234
7234
|
"92:0": {
|
|
7235
7235
|
lxx: "91:0",
|
|
7236
|
-
mt: "92:
|
|
7236
|
+
mt: "92:1",
|
|
7237
7237
|
eng: "92:0",
|
|
7238
7238
|
},
|
|
7239
7239
|
"92:1": {
|
|
@@ -11997,57 +11997,57 @@ module.exports = {
|
|
|
11997
11997
|
eng: "147:9",
|
|
11998
11998
|
},
|
|
11999
11999
|
"147:10": {
|
|
12000
|
-
lxx: "
|
|
12000
|
+
lxx: "146:10",
|
|
12001
12001
|
mt: "147:10",
|
|
12002
12002
|
eng: "147:10",
|
|
12003
12003
|
},
|
|
12004
12004
|
"147:11": {
|
|
12005
|
-
lxx: "
|
|
12005
|
+
lxx: "146:11",
|
|
12006
12006
|
mt: "147:11",
|
|
12007
12007
|
eng: "147:11",
|
|
12008
12008
|
},
|
|
12009
12009
|
"147:12": {
|
|
12010
|
-
lxx: "147:
|
|
12010
|
+
lxx: "147:1",
|
|
12011
12011
|
mt: "147:12",
|
|
12012
12012
|
eng: "147:12",
|
|
12013
12013
|
},
|
|
12014
12014
|
"147:13": {
|
|
12015
|
-
lxx: "147:
|
|
12015
|
+
lxx: "147:2",
|
|
12016
12016
|
mt: "147:13",
|
|
12017
12017
|
eng: "147:13",
|
|
12018
12018
|
},
|
|
12019
12019
|
"147:14": {
|
|
12020
|
-
lxx: "147:
|
|
12020
|
+
lxx: "147:3",
|
|
12021
12021
|
mt: "147:14",
|
|
12022
12022
|
eng: "147:14",
|
|
12023
12023
|
},
|
|
12024
12024
|
"147:15": {
|
|
12025
|
-
lxx: "147:
|
|
12025
|
+
lxx: "147:4",
|
|
12026
12026
|
mt: "147:15",
|
|
12027
12027
|
eng: "147:15",
|
|
12028
12028
|
},
|
|
12029
12029
|
"147:16": {
|
|
12030
|
-
lxx: "147:
|
|
12030
|
+
lxx: "147:5",
|
|
12031
12031
|
mt: "147:16",
|
|
12032
12032
|
eng: "147:16",
|
|
12033
12033
|
},
|
|
12034
12034
|
"147:17": {
|
|
12035
|
-
lxx: "147:
|
|
12035
|
+
lxx: "147:6",
|
|
12036
12036
|
mt: "147:17",
|
|
12037
12037
|
eng: "147:17",
|
|
12038
12038
|
},
|
|
12039
12039
|
"147:18": {
|
|
12040
|
-
lxx: "147:
|
|
12040
|
+
lxx: "147:7",
|
|
12041
12041
|
mt: "147:18",
|
|
12042
12042
|
eng: "147:18",
|
|
12043
12043
|
},
|
|
12044
12044
|
"147:19": {
|
|
12045
|
-
lxx: "
|
|
12045
|
+
lxx: "147:8",
|
|
12046
12046
|
mt: "147:19",
|
|
12047
12047
|
eng: "147:19",
|
|
12048
12048
|
},
|
|
12049
12049
|
"147:20": {
|
|
12050
|
-
lxx: "
|
|
12050
|
+
lxx: "147:9",
|
|
12051
12051
|
mt: "147:20",
|
|
12052
12052
|
eng: "147:20",
|
|
12053
12053
|
},
|
package/src/data/versified.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
const song = require("./versifications/song")
|
|
2
|
+
|
|
1
3
|
const versified = {
|
|
2
4
|
Genesis: require("./versifications/genesis"),
|
|
3
5
|
Exodus: require("./versifications/exodus"),
|
|
@@ -8,14 +10,17 @@ const versified = {
|
|
|
8
10
|
"1 Samuel": require("./versifications/1samuel"),
|
|
9
11
|
"2 Samuel": require("./versifications/2samuel"),
|
|
10
12
|
"1 Kings": require("./versifications/1kings"),
|
|
13
|
+
"2 Kings": require("./versifications/2kings"),
|
|
11
14
|
"1 Chronicles": require("./versifications/1chronicles"),
|
|
12
15
|
"2 Chronicles": require("./versifications/2chronicles"),
|
|
13
16
|
Nehemiah: require("./versifications/nehemiah"),
|
|
17
|
+
Esther: require("./versifications/esther"),
|
|
14
18
|
Job: require("./versifications/job"),
|
|
15
19
|
Psalms: require("./versifications/psalms"),
|
|
16
20
|
Proverbs: require("./versifications/proverbs"),
|
|
17
21
|
Ecclesiastes: require("./versifications/ecclesiastes"),
|
|
18
|
-
"Song of Songs":
|
|
22
|
+
"Song of Songs": song,
|
|
23
|
+
"Song of Solomon": song,
|
|
19
24
|
Isaiah: require("./versifications/isaiah"),
|
|
20
25
|
Jeremiah: require("./versifications/jeremiah"),
|
|
21
26
|
Ezekiel: require("./versifications/ezekiel"),
|
package/.trunk/trunk.yaml
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# This file controls the behavior of Trunk: https://docs.trunk.io/cli
|
|
2
|
-
# To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
|
|
3
|
-
version: 0.1
|
|
4
|
-
cli:
|
|
5
|
-
version: 1.25.0
|
|
6
|
-
# Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins)
|
|
7
|
-
plugins:
|
|
8
|
-
sources:
|
|
9
|
-
- id: trunk
|
|
10
|
-
ref: v1.7.2
|
|
11
|
-
uri: https://github.com/trunk-io/plugins
|
|
12
|
-
# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
|
|
13
|
-
runtimes:
|
|
14
|
-
enabled:
|
|
15
|
-
- node@22.16.0
|
|
16
|
-
- python@3.10.8
|
|
17
|
-
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
|
|
18
|
-
lint:
|
|
19
|
-
enabled:
|
|
20
|
-
- checkov@3.2.470
|
|
21
|
-
- git-diff-check
|
|
22
|
-
- markdownlint@0.45.0
|
|
23
|
-
- osv-scanner@2.2.2
|
|
24
|
-
- prettier@3.6.2
|
|
25
|
-
- trufflehog@3.90.6
|
|
26
|
-
actions:
|
|
27
|
-
disabled:
|
|
28
|
-
- trunk-announce
|
|
29
|
-
- trunk-check-pre-push
|
|
30
|
-
- trunk-fmt-pre-commit
|
|
31
|
-
enabled:
|
|
32
|
-
- trunk-upgrade-available
|