mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-26 02:38:48 +01:00
43 lines
1.7 KiB
JSON
43 lines
1.7 KiB
JSON
{
|
|
"name": "markdownlint",
|
|
"version": "0.0.5",
|
|
"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, max-statements: 0, no-console: 0\" demo & eslint --rule \"no-console: 0, no-shadow: 0\" example",
|
|
"build-demo": "copy node_modules\\markdown-it\\dist\\markdown-it.min.js demo & copy demo\\file-header.js demo\\markdownlint-browser.js & browserify demo/browser-polyfills.js lib/markdownlint.js --standalone markdownlint >> demo\\markdownlint-browser.js & uglifyjs demo/markdownlint-browser.js --compress --mangle --comments --output demo/markdownlint-browser.min.js",
|
|
"example": "npm install through2 & cd example & node standalone.js & grunt markdownlint & gulp markdownlint"
|
|
},
|
|
"dependencies": {
|
|
"markdown-it": "^4.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^10.1.3",
|
|
"eslint": "^0.21.0",
|
|
"istanbul": "^0.3.13",
|
|
"nodeunit": "^0.9.1",
|
|
"q": "^1.4.0",
|
|
"uglify-js": "^2.4.23"
|
|
},
|
|
"keywords": [
|
|
"markdown",
|
|
"lint",
|
|
"md",
|
|
"check",
|
|
"validate"
|
|
],
|
|
"browser": {
|
|
"markdown-it": "./demo/markdown-it-stub.js"
|
|
}
|
|
}
|