-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.8 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
{
"name": "usfm-grammar",
"description": "An elegant [USFM](https://github.com/ubsicap/usfm) parser (or validator) that uses a [parsing expression grammar](https://en.wikipedia.org/wiki/Parsing_expression_grammar) to model USFM. The grammar is written using [ohm](https://ohmlang.github.io/). Only USFM 3.0 is supported. The parsed USFM is an intuitive and easy to manipulate JSON structure that allows for painless extraction of scripture and other content from the markup. USFM Grammar is also capable of reconverting the generated JSON back to USFM.",
"version": "2.3.1",
"main": "./js/main.js",
"scripts": {
"test": "mocha --expose-gc --timeout 40000",
"start": "node ../server.js",
"lint": "eslint .",
"test-on-github": "mocha --expose-gc --timeout 40000 --ignore test/test_filesFromWild.js"
},
"dependencies": {
"jsonschema": "^1.4.1",
"npm": "^10.5.2",
"ohm-js": "^17.1.0",
"yargs": "^17.7.2"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/Bridgeconn/usfm-grammar.git"
},
"keywords": [
"usfm",
"grammar",
"usfm parser",
"validator",
"ohm",
"usfm json converter",
"json",
"cli"
],
"author": "Bridge Connectivity Solutions <[email protected]> (https://github.com/Bridgeconn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bridgeconn/usfm-grammar/issues"
},
"homepage": "https://github.com/Bridgeconn/usfm-grammar",
"devDependencies": {
"concat-stream": "^2.0.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"mocha": "^9.2.2"
},
"bin": {
"usfm-grammar": "./cli.js"
}
}