-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.1 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": "markdawn",
"version": "0.2.1",
"description": "(multi)markdown for paged documents. Outputs to pdf",
"author": "Giacomo Tagliabue <giacomo.tag@gmail.com>",
"files": [
"lib"
],
"main": "lib/core",
"bin": {
"markdawn": "lib/cli.js"
},
"scripts": {
"build": "tsc && chmod +x lib/cli.js",
"lint": "tslint --project tsconfig.json",
"test": "npm run lint",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:itajaja/markdawn.git"
},
"keywords": [
"multimarkdown",
"markdown",
"pdf",
"document"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/itajaja/markdawn/issues"
},
"homepage": "https://github.com/itajaja/markdawn",
"dependencies": {
"cheerio": "^0.19.0",
"commander": "^2.8.0",
"highlight.js": "^8.5.0",
"markdown-toc": "^0.11.1",
"puppeteer": "^0.10.2",
"remarkable": "^1.6.0"
},
"peerDependencies": {},
"devDependencies": {
"@types/node": "^8.0.28",
"run-sequence": "^1.1.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
}
}