forked from argenos/nldates-obsidian
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 KB
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
{
"name": "nldates-obsidian",
"version": "0.9.0",
"description": "Plugin to parse natural language dates in Obsidian",
"main": "main.js",
"scripts": {
"lint": "eslint . --ext .ts",
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-typescript": "8.3.0",
"@types/moment": "2.13.0",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"eslint": "8.2.0",
"moment": "^2.30.1",
"obsidian": "latest",
"prettier": "2.4.1",
"rollup": "^2.60.0",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vitest": "^4.0.16"
},
"dependencies": {
"chrono-node": "^2.9.0",
"obsidian-daily-notes-interface": "0.9.4",
"roddeh-i18n": "^1.2.1"
}
}