2015-02-22 21:30:09 -08:00
|
|
|
{
|
|
|
|
"name": "markdownlint",
|
2017-11-13 21:10:22 -08:00
|
|
|
"version": "0.6.3",
|
2016-03-11 21:36:39 -08:00
|
|
|
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
|
2015-02-23 23:39:20 -08:00
|
|
|
"main": "lib/markdownlint.js",
|
2016-09-28 21:45:26 -07:00
|
|
|
"author": "David Anson (https://dlaa.me/)",
|
2015-02-22 21:30:09 -08:00
|
|
|
"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": {
|
2016-10-06 21:44:39 -07:00
|
|
|
"test": "nodeunit test/markdownlint-test.js",
|
|
|
|
"test-cover": "istanbul cover node_modules/nodeunit/bin/nodeunit test/markdownlint-test.js",
|
|
|
|
"test-extra": "nodeunit test/markdownlint-test-extra.js",
|
2015-02-27 22:06:54 -08:00
|
|
|
"debug": "node debug node_modules/nodeunit/bin/nodeunit",
|
2016-10-31 22:53:46 -07:00
|
|
|
"lint": "eslint lib test schema && 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, object-property-newline: 0\" example",
|
2016-10-05 22:21:54 -07:00
|
|
|
"build-config-schema": "node schema/build-config-schema.js",
|
2015-06-18 18:50:57 -07:00
|
|
|
"build-demo": "cpy node_modules/markdown-it/dist/markdown-it.min.js demo && cd demo && rimraf markdownlint-browser.* && cpy file-header.js . --rename=markdownlint-browser.js && browserify browser-polyfills.js ../lib/markdownlint.js --standalone markdownlint >> markdownlint-browser.js && uglifyjs markdownlint-browser.js --compress --mangle --comments --output markdownlint-browser.min.js",
|
2016-07-05 15:03:40 -07:00
|
|
|
"build-example": "npm install --ignore-scripts grunt grunt-cli gulp through2",
|
2016-03-12 21:58:37 -08:00
|
|
|
"example": "cd example && node standalone.js && grunt markdownlint --force && gulp markdownlint"
|
2015-02-22 21:30:09 -08:00
|
|
|
},
|
2015-02-25 18:00:08 -08:00
|
|
|
"dependencies": {
|
2017-11-07 22:00:53 -08:00
|
|
|
"markdown-it": "8.3.2"
|
2015-02-25 18:00:08 -08:00
|
|
|
},
|
2015-02-22 21:30:09 -08:00
|
|
|
"devDependencies": {
|
2017-11-07 22:00:53 -08:00
|
|
|
"browserify": "^14.5.0",
|
2016-06-23 22:41:47 -07:00
|
|
|
"cpy-cli": "^1.0.1",
|
2017-11-07 22:00:53 -08:00
|
|
|
"eslint": "^4.10.0",
|
2017-05-19 22:49:31 -07:00
|
|
|
"glob": "^7.1.2",
|
2016-10-26 22:06:08 -07:00
|
|
|
"istanbul": "^0.4.5",
|
2017-11-07 22:00:53 -08:00
|
|
|
"nodeunit": "^0.11.2",
|
|
|
|
"q": "^1.5.1",
|
|
|
|
"rimraf": "^2.6.2",
|
2017-04-29 22:09:48 -07:00
|
|
|
"tv4": "^1.3.0",
|
2017-11-07 22:00:53 -08:00
|
|
|
"uglify-js": "^3.1.8"
|
2015-02-22 21:30:09 -08:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"markdown",
|
|
|
|
"lint",
|
2016-09-28 21:45:26 -07:00
|
|
|
"markdownlint",
|
2015-04-17 21:57:10 -07:00
|
|
|
"md",
|
|
|
|
"validate"
|
2015-06-17 09:09:33 -07:00
|
|
|
],
|
|
|
|
"browser": {
|
|
|
|
"markdown-it": "./demo/markdown-it-stub.js"
|
|
|
|
}
|
2015-02-22 21:30:09 -08:00
|
|
|
}
|