Create scaffolding for markdownlint package.

This commit is contained in:
David Anson 2015-02-22 21:30:09 -08:00
commit cdec362dc0
3 changed files with 51 additions and 0 deletions

27
package.json Normal file
View file

@ -0,0 +1,27 @@
{
"name": "markdownlint",
"version": "0.0.1",
"description": "A linting tool for Markdown files",
"main": "markdownlint.js",
"author": "David Anson (http://dlaa.me/)",
"license": "MIT",
"homepage": "https://github.com/DavidAnson/markdownlint",
"repository": {
"type": "git",
"url": "https://github.com/DavidAnson/markdownlint.git"
},
"bugs": {
"url": "https://github.com/DavidAnson/markdownlint/issues"
},
"scripts": {
"test": "nodeunit"
},
"devDependencies": {
"nodeunit": "^0.9.0"
},
"keywords": [
"markdown",
"lint",
"md"
]
}