2015-02-22 21:30:09 -08:00
|
|
|
{
|
|
|
|
|
"name": "markdownlint",
|
2015-04-17 22:04:45 -07:00
|
|
|
"version": "0.0.4",
|
2015-03-14 22:34:28 -07:00
|
|
|
"description": "A Node.js style checker and lint tool for Markdown files.",
|
2015-02-23 23:39:20 -08:00
|
|
|
"main": "lib/markdownlint.js",
|
2015-02-22 21:30:09 -08:00
|
|
|
"author": "David Anson (http://dlaa.me/)",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"homepage": "https://github.com/DavidAnson/markdownlint",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/DavidAnson/markdownlint.git"
|
|
|
|
|
},
|
2015-04-17 21:57:10 -07:00
|
|
|
"bugs": "https://github.com/DavidAnson/markdownlint/issues",
|
2015-02-22 21:30:09 -08:00
|
|
|
"scripts": {
|
2015-02-24 18:40:37 -08:00
|
|
|
"test": "nodeunit",
|
2015-03-11 21:13:21 -07:00
|
|
|
"test-cover": "istanbul cover node_modules/nodeunit/bin/nodeunit",
|
2015-02-27 22:06:54 -08:00
|
|
|
"debug": "node debug node_modules/nodeunit/bin/nodeunit",
|
2015-05-07 09:15:41 -07:00
|
|
|
"lint": "eslint lib test & eslint --env browser --global markdownit --global markdownlint --rule \"no-unused-vars: 0, no-extend-native: 0, max-statements: 0\" demo & eslint --rule \"no-console: 0, no-shadow: 0\" example",
|
2015-05-05 18:29:58 -07:00
|
|
|
"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",
|
2015-05-02 17:41:41 -07:00
|
|
|
"example": "npm install through2 & cd example & node standalone.js & grunt markdownlint & gulp markdownlint"
|
2015-02-22 21:30:09 -08:00
|
|
|
},
|
2015-02-25 18:00:08 -08:00
|
|
|
"dependencies": {
|
2015-04-16 18:29:09 -07:00
|
|
|
"markdown-it": "^4.1.1"
|
2015-02-25 18:00:08 -08:00
|
|
|
},
|
2015-02-22 21:30:09 -08:00
|
|
|
"devDependencies": {
|
2015-05-03 21:50:25 -07:00
|
|
|
"browserify": "^10.0.0",
|
2015-05-07 18:01:52 -07:00
|
|
|
"eslint": "^0.20.0",
|
2015-03-20 00:16:48 -07:00
|
|
|
"istanbul": "^0.3.8",
|
|
|
|
|
"nodeunit": "^0.9.1",
|
2015-03-01 22:15:02 -08:00
|
|
|
"q": "^1.2.0"
|
2015-02-22 21:30:09 -08:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"markdown",
|
|
|
|
|
"lint",
|
2015-04-17 21:57:10 -07:00
|
|
|
"md",
|
|
|
|
|
"check",
|
|
|
|
|
"validate"
|
2015-02-22 21:30:09 -08:00
|
|
|
]
|
|
|
|
|
}
|