-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.33 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-daily-notes-interface",
"version": "0.9.4",
"description": "Interface for creating daily notes in Obsidian",
"author": "liamcain",
"main": "./dist/main.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/liamcain/obsidian-daily-notes-interface"
},
"bin": {
"obsidian-daily-notes-interface": "./dist/main.js"
},
"scripts": {
"lint": "eslint . --ext .ts",
"build": "npm run lint && rollup -c",
"test": "jest",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"obsidian": "obsidianmd/obsidian-api#master",
"tslib": "2.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "18.0.0",
"@rollup/plugin-node-resolve": "11.2.1",
"@rollup/plugin-typescript": "8.2.1",
"@types/jest": "26.0.22",
"@types/moment": "2.13.0",
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.20.0",
"eslint": "7.23.0",
"jest": "26.6.3",
"moment": "2.29.1",
"moment-timezone": "0.5.33",
"rollup": "2.44.0",
"ts-jest": "26.5.4",
"typescript": "4.2.3"
},
"jest": {
"clearMocks": true,
"moduleNameMapper": {
"src/(.*)": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts"
]
}
}