2015-02-22 21:30:09 -08:00
|
|
|
{
|
|
|
|
|
"name": "markdownlint",
|
2015-03-20 00:29:36 -07:00
|
|
|
"version": "0.0.3",
|
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"
|
|
|
|
|
},
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/DavidAnson/markdownlint/issues"
|
|
|
|
|
},
|
|
|
|
|
"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-03-20 00:09:55 -07:00
|
|
|
"lint": "eslint lib test & eslint --rule \"no-console: 0, no-shadow: 0\" example",
|
2015-03-14 23:47:34 -07:00
|
|
|
"example": "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-03-18 23:14:44 -07:00
|
|
|
"markdown-it": "^4.0.1"
|
2015-02-25 18:00:08 -08:00
|
|
|
},
|
2015-02-22 21:30:09 -08:00
|
|
|
"devDependencies": {
|
2015-03-18 23:41:34 -07:00
|
|
|
"eslint": "^0.17.1",
|
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",
|
|
|
|
|
"md"
|
|
|
|
|
]
|
|
|
|
|
}
|