-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 841 Bytes
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
{
"name": "docflow",
"version": "1.0.2",
"description": "IT artifact renderer for Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"mermaid": "^10.9.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^16.18.0",
"esbuild": "0.17.3",
"jest": "^29.7.0",
"obsidian": "latest",
"ts-jest": "^29.2.0",
"typescript": "^5.8.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": ["ts-jest", { "tsconfig": { "module": "CommonJS" } }]
},
"testMatch": ["**/*.test.ts"]
}
}