forked from uphy/obsidian-reminder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "obsidian-reminder-plugin",
"version": "1.1.2",
"description": "Reminder plugin for Obsidian",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "cross-env NODE_OPTIONS='--no-deprecation' rollup --config rollup.config.js --environment BUILD:production",
"test": "jest"
},
"keywords": [],
"author": "uphy",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@tsconfig/svelte": "^2.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^14.14.37",
"cross-env": "^7.0.3",
"jest": "^27.0.6",
"moment": "^2.29.1",
"obsidian": "^0.12.0",
"rollup": "^2.32.1",
"rollup-plugin-svelte": "^7.1.0",
"svelte-check": "^2.2.4",
"svelte-jester": "^2.0.1",
"svelte-preprocess": "^4.7.4",
"ts-jest": "^27.0.5",
"tslib": "^2.2.0",
"typescript": "^4.4.3"
},
"dependencies": {
"electron": "^13.1.8",
"markdown-it": "^12.2.0",
"rrule": "^2.6.8",
"svelte": "^3.42.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testEnvironment": "jsdom",
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/*.test.ts"
],
"preset": "ts-jest"
}
}