-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "@idrw/bible-ref-parser",
"version": "2.1.2",
"main": "./build/index.js",
"type": "module",
"scripts": {
"start": "npx tsx .",
"test": "npx vitest run",
"build": "rm -rf ./build && npx tsc"
},
"keywords": [
"bible",
"bible verses",
"verse parser",
"bible references"
],
"author": "https://github.com/idontreallywolf",
"homepage": "https://github.com/idontreallywolf/bible-ref-parser",
"license": "MIT",
"description": "Bible reference parsing package. Turns references such as \"Genesis 1:1-2;II Peter;John 1:1,3-5,8\" into objects.",
"repository": {
"type": "git",
"url": "https://github.com/idontreallywolf/bible-ref-parser.git"
},
"bugs": {
"url": "https://github.com/idontreallywolf/bible-ref-parser/issues"
},
"files": [
"build"
],
"types": "./build/index.d.ts",
"devDependencies": {
"@types/node": "^22.14.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"publishConfig": {
"access": "public"
}
}