forked from marc0l92/obsidian-jira-issue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.57 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
{
"name": "obsidian-jira-issue",
"version": "1.56.0",
"description": "This plugin allows you to track the progress of [Atlassian Jira](https://www.atlassian.com/software/jira) issues from your [Obsidian](https://obsidian.md/) notes.",
"main": "src/main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs",
"test": "cross-env-shell TZ=UTC jest",
"test-watch": "cross-env-shell TZ=UTC \"jest --watchAll\""
},
"keywords": [
"obsidian",
"Jira",
"Atlassian"
],
"author": "marc0l92",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/jsonpath": "^0.2.3",
"@types/ms": "^0.7.34",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"builtin-modules": "^3.3.0",
"cross-env": "^7.0.3",
"esbuild": "0.16.3",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"jsonpath": "^1.1.1",
"obsidian": "latest",
"ts-jest": "^29.1.1",
"tslib": "2.4.1",
"typescript": "4.9.4"
},
"dependencies": {
"@codemirror/language": "^6.9.2",
"@codemirror/state": "^6.3.1",
"@codemirror/view": "^6.22.0",
"@lezer/common": "^1.1.1",
"colorsys": "^1.0.22",
"escape-string-regexp": "^5.0.0",
"moment": "^2.29.4",
"ms": "^2.1.3"
}
}