-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.76 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.76 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
50
51
52
53
54
55
56
{
"name": "taskparser",
"version": "1.3.1",
"main": "./dist/main.js",
"scripts": {
"test": "node --test ./dist/test-runner.js",
"ts:build": "rm -rf ./dist && tsc",
"ts:watch": "rm -rf ./dist && tsc -w",
"bundle": "esbuild --bundle dist/bin.js --outfile=dist/bin.js --platform=node --allow-overwrite --format=esm --inject:esbuild-cjs-shim.js --legal-comments=none",
"build": "npm run ts:build && npm run bundle"
},
"bin": {
"taskparser": "./dist/bin.js"
},
"type": "module",
"author": "Jacopo Scazzosi <[email protected]>",
"license": "LGPL-3.0-only",
"description": "A CLI tool to parse tasks and worklogs out of Markdown documents and print them to standard output, either in tabular of CSV format. Supports tag-based sorting and filtering operating on both inline tags and frontmatter metadata.",
"homepage": "https://github.com/jacoscaz/taskparser",
"issues": "https://github.com/jacoscaz/taskparser/issues",
"repository": {
"type": "git",
"url": "https://github.com/jacoscaz/taskparser.git"
},
"dependencies": {},
"devDependencies": {
"@types/argparse": "^2.0.17",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.17",
"@types/slug": "^5.0.9",
"argparse": "^2.0.1",
"csv-stringify": "^6.5.2",
"esbuild": "^0.25.2",
"js-yaml": "^4.1.0",
"matcher": "^5.0.0",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-frontmatter": "^2.0.1",
"mdast-util-gfm": "^3.1.0",
"micromark-extension-frontmatter": "^2.0.0",
"micromark-extension-gfm": "^3.0.0",
"simple-wcswidth": "^1.0.1",
"slug": "^10.0.0",
"typescript": "^5.8.2"
},
"keywords": [
"markdown",
"tasks",
"todo",
"task",
"parse",
"extract",
"ninja",
"tags",
"frontmatter"
]
}