generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
79 lines (79 loc) · 2.09 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "obsidian-bible-reference",
"version": "3.2.1",
"description": "Taking Bible Study note in Obsidian.md application easily. Automatically suggesting Bible Verses as references. ",
"main": "main.js",
"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": "npm run lint && npm run prettier",
"test": "jest src"
},
"keywords": [
"bible",
"bible study",
"obsidian",
"obsidian.md",
"obsidian plugin"
],
"author": "tim-hub",
"license": "MIT",
"devDependencies": {
"@types/ackee-tracker": "5.0.4",
"@types/jest": "29.5.12",
"@types/node": "20.12.12",
"@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.17.3",
"husky": "8.0.3",
"jest": "29.7.0",
"obsidian": "1.5.7-1",
"prettier": "2.8.8",
"ts-jest": "29.1.2",
"tslib": "2.6.2",
"typescript": "5.4.5"
},
"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",
"flagsmith-nodejs": "3.3.1"
}
}