forked from kinabalu/obsidian-word-sprint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "obsidian-word-sprint",
"version": "0.2.3",
"description": "Word Sprint for Obsidian plugin for your writing projects like Nanowrimo",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"test": "jest --passWithNoTests",
"test:watch": "yarn test -- --watch"
},
"keywords": [],
"author": "Andrew Lombardi <andrew@mysticcoders.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kinabalu/obsidian-word-sprint.git"
},
"devDependencies": {
"@types/node": "^16.11.1",
"@types/numeral": "^2.0.2",
"@types/jest": "26.0.22",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/uuid": "^8.3.1",
"jest": "26.6.3",
"esbuild": "0.13.8",
"obsidian": "^0.12.17",
"tslib": "2.3.1",
"typescript": "4.4.4",
"ts-jest": "26.5.4"
},
"dependencies": {
"numeral": "^2.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^8.3.2"
},
"jest": {
"preset": "ts-jest",
"moduleNameMapper": {
"src/(.*)": "<rootDir>/src/$1"
},
"moduleFileExtensions": [
"js",
"ts"
]
}
}