referenceparser
Version:
Parse a verse reference string to match for a book, chapter and verse
42 lines (41 loc) • 849 B
JSON
{
"name": "referenceparser",
"version": "1.2.2",
"description": "Parse a verse reference string to match for a book, chapter and verse",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"bible",
"verse-reference",
"string-parsing"
],
"repository": {
"type": "git",
"url": "https://github.com/jcuenod/ReferenceParser.git"
},
"author": "James Cuénod",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"typescript": "^3.1.6"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}