forked from renehamburger/Bible-Passage-Reference-Parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.24 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
{
"name": "bible-passage-reference-parser",
"version": "2.0.1",
"description": "Identifies and parses Bible references (like John 3:16) in over 40 languages.",
"main": "js/",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"js/",
"Readme.md"
],
"repository": {
"type": "git",
"url": "git://github.com/openbibleinfo/Bible-Passage-Reference-Parser.git"
},
"keywords": [
"bible",
"verses"
],
"author": "OpenBible.info <openbibleinfo@gmail.com> (http://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": {
"add-language": "cd bin && perl 01.add_lang.pl",
"compile-language": "cd bin && perl 02.compile.pl",
"build-language": "bash -c 'npm run add-language $0 && npm run compile-language $0'",
"test-language": "bash -c 'jasmine-node test/js/$0.spec.js'",
"test": "(find test/js -name *.spec.js | xargs -I % sh -c 'echo %; jasmine-node %';) || exit 1;"
},
"devDependencies": {
"coffeescript": "^1.x",
"jasmine-node": "^1.15.0",
"pegjs": "^0.10.0",
"regexgen": "^1.3.0"
}
}