mirror of
https://github.com/tim-hub/obsidian-bible-reference.git
synced 2026-07-22 06:00:26 +00:00
88 lines
2.2 KiB
JSON
88 lines
2.2 KiB
JSON
{
|
|
"name": "obsidian-bible-reference",
|
|
"version": "26.06.07",
|
|
"description": "Taking Bible Study note in Obsidian.md application easily. Automatically suggesting Bible Verses as references. ",
|
|
"main": "main.js",
|
|
"engines": {
|
|
"node": ">=24.6.0",
|
|
"pnpm": ">=10.15.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "node scripts/esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node scripts/esbuild.config.mjs production",
|
|
"version": "node scripts/version-bump.mjs && git add manifest.json versions.json",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"prettier": "prettier --check .",
|
|
"prettier:fix": "prettier --write .",
|
|
"prepare": "husky install",
|
|
"precommit": "pnpm run lint && pnpm run prettier",
|
|
"test": "jest src"
|
|
},
|
|
"keywords": [
|
|
"bible",
|
|
"bible reference",
|
|
"bible notes",
|
|
"bible study",
|
|
"theology study",
|
|
"obsidian",
|
|
"obsidian.md",
|
|
"obsidian plugin",
|
|
"obsidian bible"
|
|
],
|
|
"author": "tim-hub",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/ackee-tracker": "5.0.4",
|
|
"@types/jest": "29.5.14",
|
|
"@types/node": "24.3.0",
|
|
"@eslint/js": "^9.0.0",
|
|
"all-contributors-cli": "6.26.1",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.28.0",
|
|
"eslint": "^10.0.0",
|
|
"globals": "^16.0.0",
|
|
"typescript-eslint": "^8.0.0",
|
|
"husky": "^9.1.7",
|
|
"jest": "^29.7.0",
|
|
"obsidian": "1.8.7",
|
|
"prettier": "^3.8.3",
|
|
"ts-jest": "^29.4.11",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "5.3.3"
|
|
},
|
|
"jest": {
|
|
"transform": {
|
|
".(ts|tsx)": "ts-jest"
|
|
},
|
|
"testEnvironment": "node",
|
|
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js"
|
|
],
|
|
"coveragePathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"/test/"
|
|
],
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 60,
|
|
"functions": 80,
|
|
"lines": 80,
|
|
"statements": 80
|
|
}
|
|
},
|
|
"coverageDirectory": "./coverage/",
|
|
"collectCoverage": true,
|
|
"modulePathIgnorePatterns": [
|
|
"<rootDir>/build/",
|
|
"<rootDir>/docs/"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"ackee-tracker": "5.1.0",
|
|
"bible-reference-toolkit": "^26.2.4"
|
|
}
|
|
}
|