forked from obsidian-tasks-group/obsidian-tasks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "obsidian-tasks",
"version": "1.4.1",
"description": "Task management for the Obsidian knowledge base",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js",
"lint": "eslint ./src --fix && eslint ./tests --fix && tsc --noEmit --pretty && svelte-check",
"test": "jest --ci",
"test:dev": "jest --watch"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"obsidian-tasks",
"task-manager",
"task-management"
],
"author": "Martin Schenck",
"license": "MIT",
"devDependencies": {
"@arkweid/lefthook": "^0.7.6",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "8.2.1",
"@tsconfig/svelte": "^1.0.10",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"async-mutex": "^0.3.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.3.1",
"moment": "^2.29.1",
"obsidian": "^0.12.17",
"prettier": "^2.2.1",
"rollup": "2.47.0",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.37.0",
"svelte-check": "^1.5.2",
"svelte-preprocess": "^4.7.2",
"ts-jest": "^27.0.7",
"tslib": "^2.0.3",
"typescript": "^4.2.4"
},
"dependencies": {
"chrono-node": "2.2.6",
"rrule": "^2.6.8"
}
}