-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 2.01 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mdtk",
"version": "0.20.1",
"description": "A markdown toolkit to simplify the creation of maintainable, composable documents.",
"main": "index.js",
"scripts": {
"test": "mocha test",
"gh-md-toc": "gh-md-toc --insert README.md; npm run clean",
"build-example": "bin/mdtk.js render --config example/config.yaml example/presentation.md",
"preversion": "npm run gh-md-toc && npm run build-example",
"version": "git add package.json package-lock.json example README.md",
"postversion": "git push && git push --tags && npm publish",
"clean": "rm README.md.*"
},
"bin": {
"mdtk": "./bin/mdtk.js"
},
"author": "Anthony Hogg <[email protected]>",
"license": "MIT",
"dependencies": {
"canvas": "^2.6.0",
"cheerio": "^1.0.0-rc.2",
"chokidar": "^2.0.4",
"css": "^2.2.4",
"debug": "^4.1.0",
"dotenv": "^8.0.0",
"handlebars": "^4.7.3",
"handlebars-helpers": "^0.10.0",
"hcl": "^0.1.0",
"hcl-to-json": "^0.1.1",
"highlight.js": "^10.4.1",
"html": "^1.0.0",
"live-server": "^1.2.1",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.0.2",
"markdown-it-attrs": "^2.3.2",
"markdown-it-checkboxes": "^1.0.0",
"markdown-it-container": "^2.0.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-front-matter": "^0.1.2",
"markdown-it-html5-media": "^0.6.0",
"markdown-it-iframe": "^1.0.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-plantuml": "^1.3.0",
"markdown-it-table-of-contents": "^0.4.3",
"mime-types": "^2.1.21",
"mkdirp": "^0.5.1",
"node-plantuml": "^0.7.0",
"node-yaml": "^3.2.0",
"pegjs": "^0.10.0",
"vega": "^5.10.1",
"vega-lite": "^4.13.1",
"yargs": "^12.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"mocha": "^5.2.0"
}
}