-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.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
{
"name": "md-to-pdf",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run print",
"test": "npm run lint",
"lint": "textlint docs/*.md",
"clean": "rimraf styles.css docs/*.pdf",
"concat": "node css/concat.js",
"preprint": "npm run lint && npm run clean && npm run concat",
"print": "markdown-pdf docs/*.md -s styles.css -z node_modules/markdown-styles/layouts/github/assets/css/hljs-github.min.css"
},
"author": "Matsui Masashi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/circled9/md-to-pdf"
},
"bugs": {
"url": "https://github.com/circled9/md-to-pdf/issues"
},
"license": "ISC",
"devDependencies": {
"concat-files": "^0.1.1",
"markdown-pdf": "^11.0.0",
"markdown-styles": "^3.2.0",
"rimraf": "^3.0.2",
"textlint": "^12.2.4",
"textlint-rule-max-ten": "^4.0.3",
"textlint-rule-no-mix-dearu-desumasu": "^5.0.0",
"textlint-rule-spellcheck-tech-word": "^5.0.0"
}
}