Skip to content

Commit

Permalink
Prepare for publish to NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Shaw committed May 17, 2013
1 parent 74380f2 commit ccab74e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
.npmignore
.gitignore
.idea
*.iml
dist
*.log
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ markdown-pdf

Node module that converts Markdown files to PDFs.

The PDF looks great because it is styled by HTML5 Boilerplate. What? - Yes! Your Markdown is first converted to HTML, then pushed into the HTML5 Boilerplate index.html. Phantomjs renders the page and saves it to a PDF. You can even cusomtise the style of the PDF by passing an optional path to your CSS.
The PDF looks great because it is styled by HTML5 Boilerplate. What? - Yes! Your Markdown is first converted to HTML, then pushed into the HTML5 Boilerplate `index.html`. Phantomjs renders the page and saves it to a PDF. You can even cusomtise the style of the PDF by passing an optional path to your CSS.

Getting started
---
Expand Down
14 changes: 11 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,20 @@
"convert"
],
"author": "Alan Shaw",
"license": "MIT",
"homepage": "https://github.com/alanshaw/markdown-pdf",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/alanshaw/markdown-pdf/blob/master/LICENSE"
}
],
"dependencies": {
"markdown": "~0.4.0",
"phantomjs": "~1.9.0-1",
"glob": "~3.2.1",
"async": "~0.2.8",
"tmp": "0.0.18"
"tmp": "~0.0.18"
},
"engines": {
"node": "~0.10.0"
}
}

0 comments on commit ccab74e

Please sign in to comment.