-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.05 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@htlin222/flowdoc",
"version": "0.1.1",
"description": "Deterministic, preset-driven flow diagrams for reporting guidelines (PRISMA 2020, CONSORT 2010, STROBE) — outputs SVG / drawio / Mermaid / PDF / PNG with zero runtime deps.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"flowdoc": "bin/flowdoc.mjs"
},
"files": [
"dist",
"bin",
"src",
"examples",
"README.md",
"LICENSE",
"CITATION.cff",
"citation.bib"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"test": "node --test --experimental-test-module-mocks dist/../test/*.test.mjs",
"prepare-examples": "npm run build && node bin/flowdoc.mjs render examples/prisma-review.yaml -o examples/prisma-review.svg && node bin/flowdoc.mjs export examples/prisma-review.yaml --format drawio -o examples/prisma-review.drawio && node bin/flowdoc.mjs export examples/prisma-review.yaml --format mermaid -o examples/prisma-review.mmd",
"demo": "npm run build && npm run prepare-examples && npm test",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"prisma",
"prisma-2020",
"consort",
"consort-2010",
"strobe",
"systematic-review",
"meta-analysis",
"randomised-controlled-trial",
"rct",
"observational-study",
"flow-diagram",
"reporting-guideline",
"svg",
"pdf",
"png",
"drawio",
"mermaid",
"reproducible-research",
"deterministic"
],
"author": {
"name": "Hsieh-Ting Lin",
"url": "https://orcid.org/0009-0002-3974-4528"
},
"license": "MIT",
"homepage": "https://github.com/htlin222/flowdoc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/htlin222/flowdoc.git"
},
"bugs": {
"url": "https://github.com/htlin222/flowdoc/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.0",
"typescript": "^5.3.3"
}
}