markdownlint/package.json

39 lines
1.4 KiB
JSON

{
"name": "markdownlint",
"version": "0.0.4",
"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": "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 --env browser --global markdownit --global markdownlint --rule \"no-unused-vars: 0, no-extend-native: 0\" demo & eslint --rule \"no-console: 0, no-shadow: 0\" example",
"build-demo": "copy node_modules\\markdown-it\\dist\\markdown-it.min.js demo & browserify lib/markdownlint.js --standalone markdownlint --exclude markdown-it --outfile demo/markdownlint-browser.js",
"example": "npm install through2 & cd example & node standalone.js & grunt markdownlint & gulp markdownlint"
},
"dependencies": {
"markdown-it": "^4.1.1"
},
"devDependencies": {
"browserify": "^10.0.0",
"eslint": "^0.19.0",
"istanbul": "^0.3.8",
"nodeunit": "^0.9.1",
"q": "^1.2.0"
},
"keywords": [
"markdown",
"lint",
"md",
"check",
"validate"
]
}