generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "obsidian-plugin-todo",
"version": "0.2.0",
"description": "Text-based GTD in Obsidian. Collects all outstanding TODOs from your vault and presents them in lists Today, Scheduled, Inbox and Someday/Maybe.",
"main": "main.js",
"scripts": {
"build": "rollup --config rollup.config.js",
"dev": "rollup --config rollup.config.js -w",
"lint": "eslint '**/*.{js,ts}' --fix",
"lint-on-ci": "eslint '**/*.{js,ts}'",
"test": "jest"
},
"keywords": [],
"author": "Lars Lockefeer",
"bugs": {
"url": "https://github.com/larslockefeer/obsidian-plugin-todo/issues"
},
"homepage": "https://github.com/larslockefeer/obsidian-plugin-todo#obsidian-todo-plugin",
"license": "GPL-3.0-only",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^26.0.20",
"@types/luxon": "^1.26.0",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rollup": "^2.32.1",
"rollup-plugin-polyfill-node": "^0.8.0",
"ts-jest": "^26.5.1",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,ts}": [
"eslint --fix"
]
},
"dependencies": {
"luxon": "^1.26.0",
"obsidian": "^0.12.17",
"obsidian-daily-notes-interface": "^0.9.4"
}
}