-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1001 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1001 Bytes
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
{
"name": "markdown-utilities",
"version": "0.3.0",
"description": "A collection of small handy tools for improving and converting markdown",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hacker112/markdown-utilities.git"
},
"author": "David Granqvist",
"license": "ISC",
"bugs": {
"url": "https://github.com/hacker112/markdown-utilities/issues"
},
"homepage": "https://github.com/hacker112/markdown-utilities#readme",
"dependencies": {
"highlight.js": "^11.7.0",
"html-minifier": "^4.0.0",
"markdown-toc": "^1.2.0",
"meow": "^6.1.0",
"puppeteer": "^15.0.2",
"remarkable": "^2.0.0"
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8"
},
"bin": {
"markdown-to-pdf": "bin/markdown-to-pdf.js",
"markdown-github-toc": "bin/markdown-github-toc.js"
}
}