markdownlint/package.json
2015-03-20 00:29:36 -07:00

37 lines
1 KiB
JSON

{
"name": "markdownlint",
"version": "0.0.3",
"description": "A Node.js style checker and lint tool for Markdown files.",
"main": "lib/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",
"test-cover": "istanbul cover node_modules/nodeunit/bin/nodeunit",
"debug": "node debug node_modules/nodeunit/bin/nodeunit",
"lint": "eslint lib test & eslint --rule \"no-console: 0, no-shadow: 0\" example",
"example": "cd example & node standalone.js & grunt markdownlint & gulp markdownlint"
},
"dependencies": {
"markdown-it": "^4.0.1"
},
"devDependencies": {
"eslint": "^0.17.1",
"istanbul": "^0.3.8",
"nodeunit": "^0.9.1",
"q": "^1.2.0"
},
"keywords": [
"markdown",
"lint",
"md"
]
}