-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "bible-passage-reference-parser",
"version": "3.0.0",
"description": "Identifies and parses Bible references (like John 3:16) in over 40 languages.",
"main": "esm/",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"cjs/",
"js/",
"esm/",
"Readme.md"
],
"repository": {
"type": "git",
"url": "git://github.com/openbibleinfo/Bible-Passage-Reference-Parser.git"
},
"type": "module",
"keywords": [
"bible",
"verses"
],
"author": "OpenBible.info <openbibleinfo@gmail.com> (https://www.openbible.info/)",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/openbibleinfo/Bible-Passage-Reference-Parser/issues"
},
"homepage": "/~https://github.com/openbibleinfo/Bible-Passage-Reference-Parser",
"scripts": {
"build-language": "cd bin && sh build_lang.sh",
"test": "npx jasmine test/*.spec.* test/lang/*.spec.js"
},
"devDependencies": {
"@pemistahl/grex": "^1.0.2",
"esbuild": "^0.24.2",
"jasmine": "^5.5.0",
"peggy": "^4.2.0",
"typescript": "^5.7.2"
}
}