-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.67 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
{
"name": "obsidian-task-marker",
"version": "0.6.2",
"private": true,
"description": "Manage task status in Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "npm run prettier && node esbuild.config.mjs production && cp manifest.json styles.css build",
"pretest": "eslint --ignore-path .gitignore src/",
"test": "jest --passWithNoTests",
"prettier": "prettier -w 'src/**/*.ts'",
"preversion": "npm run build && npm run test",
"version": "node version-bump.mjs && node version-changelog.mjs && git add manifest.json versions.json CHANGELOG.md && cp manifest.json build/",
"postversion": "git push && git push --tags && gh release create $npm_package_version -F CHANGELOG.md --draft build/main.js manifest.json styles.css"
},
"version-tag-prefix": "",
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-plugin",
"obsidian-md-plugin"
],
"author": "wenlzhang",
"repository": "github.com:wenlzhang/obsidian-task-marker",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.62.0",
"auto-changelog": "^2.4.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"jest": "^27.2.4",
"moment": "^2.29.4",
"obsidian": "^1.1.1",
"prettier": "^2.8.2",
"ts-jest": "^27.0.5",
"tslib": "^2.6.2",
"typescript": "4.9.4"
},
"auto-changelog": {
"backfillLimit": false,
"commitLimit": false,
"ignoreCommitPattern": "(🔖|🔨|🧹|changelog|release|Update README).*"
}
}