tim-hub_obsidian-bible-refe.../package.json
2025-12-13 21:48:14 +13:00

87 lines
2.2 KiB
JSON

{
"name": "obsidian-bible-reference",
"version": "25.12.13",
"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 --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --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",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"all-contributors-cli": "6.26.1",
"builtin-modules": "3.3.0",
"esbuild": "^0.25.12",
"eslint": "7.32.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"obsidian": "1.8.7",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"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": "^2.3.6"
}
}