2015-02-22 21:30:09 -08:00
{
"name" : "markdownlint" ,
2021-02-11 22:35:16 -08:00
"version" : "0.23.1" ,
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" ,
2019-11-10 19:26:55 -08:00
"types" : "lib/markdownlint.d.ts" ,
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" : {
2021-01-19 20:41:04 -08:00
"build-config" : "npm run build-config-schema && npm run build-config-example" ,
"build-config-example" : "node schema/build-config-example.js" ,
2016-10-05 22:21:54 -07:00
"build-config-schema" : "node schema/build-config-schema.js" ,
2020-10-16 14:48:03 -07:00
"build-declaration" : "tsc --allowJs --declaration --emitDeclarationOnly --resolveJsonModule lib/markdownlint.js && rimraf 'lib/{c,md,r}*.d.ts' 'helpers/*.d.ts'" ,
2021-01-07 23:23:02 -08:00
"build-demo" : "cpy node_modules/markdown-it/dist/markdown-it.min.js demo && cd demo && rimraf markdownlint-browser.* && webpack --no-stats" ,
2017-11-22 21:41:14 -08:00
"build-example" : "npm install --no-save --ignore-scripts grunt grunt-cli gulp through2" ,
2021-01-19 20:41:04 -08:00
"ci" : "npm-run-all --continue-on-error --parallel test-cover lint declaration build-config build-demo && git diff --exit-code" ,
2021-01-07 23:18:24 -08:00
"clean-test-repos" : "rimraf test-repos" ,
2021-06-13 16:37:29 -07:00
"clone-test-repos-dotnet-docs" : "cd test-repos && git clone https://github.com/dotnet/docs dotnet-docs --depth 1 --no-tags --quiet" ,
"clone-test-repos-eslint-eslint" : "cd test-repos && git clone https://github.com/eslint/eslint eslint-eslint --depth 1 --no-tags --quiet" ,
"clone-test-repos-mkdocs-mkdocs" : "cd test-repos && git clone https://github.com/mkdocs/mkdocs mkdocs-mkdocs --depth 1 --no-tags --quiet" ,
"clone-test-repos-mochajs-mocha" : "cd test-repos && git clone https://github.com/mochajs/mocha mochajs-mocha --depth 1 --no-tags --quiet" ,
"clone-test-repos-pi-hole-docs" : "cd test-repos && git clone https://github.com/pi-hole/docs pi-hole-docs --depth 1 --no-tags --quiet" ,
"clone-test-repos-v8-v8-dev" : "cd test-repos && git clone https://github.com/v8/v8.dev v8-v8-dev --depth 1 --no-tags --quiet" ,
"clone-test-repos-webhintio-hint" : "cd test-repos && git clone https://github.com/webhintio/hint webhintio-hint --depth 1 --no-tags --quiet" ,
"clone-test-repos-webpack-webpack-js-org" : "cd test-repos && git clone https://github.com/webpack/webpack.js.org webpack-webpack-js-org --depth 1 --no-tags --quiet" ,
"clone-test-repos" : "mkdir test-repos && cd test-repos && npm run clone-test-repos-eslint-eslint && npm run clone-test-repos-mkdocs-mkdocs && npm run clone-test-repos-mochajs-mocha && npm run clone-test-repos-pi-hole-docs && npm run clone-test-repos-webhintio-hint && npm run clone-test-repos-webpack-webpack-js-org" ,
"clone-test-repos-large" : "npm run clone-test-repos && cd test-repos && npm run clone-test-repos-dotnet-docs && npm run clone-test-repos-v8-v8-dev" ,
2021-01-07 23:18:24 -08:00
"declaration" : "npm run build-declaration && npm run test-declaration" ,
"example" : "cd example && node standalone.js && grunt markdownlint --force && gulp markdownlint" ,
"lint" : "eslint --max-warnings 0 ." ,
2021-01-10 20:50:35 -08:00
"lint-test-repos" : "ava --timeout=5m test/markdownlint-test-repos.js" ,
2021-01-10 20:46:00 -08:00
"test" : "ava test/markdownlint-test.js test/markdownlint-test-custom-rules.js test/markdownlint-test-helpers.js test/markdownlint-test-result-object.js test/markdownlint-test-scenarios.js" ,
2021-01-07 23:18:24 -08:00
"test-cover" : "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 npm test" ,
"test-declaration" : "cd example/typescript && tsc && node type-check.js" ,
2021-01-10 20:50:35 -08:00
"test-extra" : "ava --timeout=5m test/markdownlint-test-extra.js"
2015-02-22 21:30:09 -08:00
} ,
2018-03-06 21:49:16 -08:00
"engines" : {
2020-01-09 21:13:11 -08:00
"node" : ">=10"
2018-03-06 21:49:16 -08:00
} ,
2015-02-25 18:00:08 -08:00
"dependencies" : {
2021-06-08 22:02:02 -07:00
"markdown-it" : "12.0.6"
2015-02-25 18:00:08 -08:00
} ,
2015-02-22 21:30:09 -08:00
"devDependencies" : {
2021-01-10 20:46:00 -08:00
"ava" : "~3.15.0" ,
Update dependencies: c8 to 7.7.2, eslint to 7.28.0, eslint-plugin-jsdoc to 35.1.3, eslint-plugin-unicorn to 33.0.1, globby to 11.0.3, js-yaml to 4.1.0, markdown-it-texmath to 0.9.0, markdownlint-rule-helpers to 0.14.0, ts-loader to 9.2.3, typescript to 4.3.2, webpack to 5.38.1, webpack-cli to 4.7.2.
2021-06-08 22:20:13 -07:00
"c8" : "~7.7.2" ,
Update dependencies: @types/node to 14.6.4, browserify to 16.5.2, c8 to 7.3.0, cpy-cli to 3.1.1, eslint to 7.8.1, eslint-plugin-jsdoc to 30.3.1, globby to 11.0.1, js-yaml to 3.14.0, markdownlint-rule-helpers to 0.11.0, strip-json-comments to 3.1.1, tape-player to 0.1.1, typescript to 4.0.2, uglify-js to 3.10.3.
2020-09-05 17:08:49 -07:00
"cpy-cli" : "~3.1.1" ,
Update dependencies: c8 to 7.7.2, eslint to 7.28.0, eslint-plugin-jsdoc to 35.1.3, eslint-plugin-unicorn to 33.0.1, globby to 11.0.3, js-yaml to 4.1.0, markdown-it-texmath to 0.9.0, markdownlint-rule-helpers to 0.14.0, ts-loader to 9.2.3, typescript to 4.3.2, webpack to 5.38.1, webpack-cli to 4.7.2.
2021-06-08 22:20:13 -07:00
"eslint" : "~7.28.0" ,
"eslint-plugin-jsdoc" : "~35.1.3" ,
2020-09-06 19:49:35 -07:00
"eslint-plugin-node" : "~11.1.0" ,
Update dependencies: c8 to 7.7.2, eslint to 7.28.0, eslint-plugin-jsdoc to 35.1.3, eslint-plugin-unicorn to 33.0.1, globby to 11.0.3, js-yaml to 4.1.0, markdown-it-texmath to 0.9.0, markdownlint-rule-helpers to 0.14.0, ts-loader to 9.2.3, typescript to 4.3.2, webpack to 5.38.1, webpack-cli to 4.7.2.
2021-06-08 22:20:13 -07:00
"eslint-plugin-unicorn" : "~33.0.1" ,
"globby" : "~11.0.3" ,
"js-yaml" : "~4.1.0" ,
2019-01-19 12:52:13 -08:00
"markdown-it-for-inline" : "~0.1.1" ,
"markdown-it-sub" : "~1.0.0" ,
"markdown-it-sup" : "~1.0.0" ,
Update dependencies: c8 to 7.7.2, eslint to 7.28.0, eslint-plugin-jsdoc to 35.1.3, eslint-plugin-unicorn to 33.0.1, globby to 11.0.3, js-yaml to 4.1.0, markdown-it-texmath to 0.9.0, markdownlint-rule-helpers to 0.14.0, ts-loader to 9.2.3, typescript to 4.3.2, webpack to 5.38.1, webpack-cli to 4.7.2.
2021-06-08 22:20:13 -07:00
"markdown-it-texmath" : "~0.9.0" ,
"markdownlint-rule-helpers" : "~0.14.0" ,
2021-01-07 23:32:58 -08:00
"npm-run-all" : "~4.1.5" ,
2020-04-10 19:25:33 -07:00
"rimraf" : "~3.0.2" ,
Update dependencies: @types/node to 14.6.4, browserify to 16.5.2, c8 to 7.3.0, cpy-cli to 3.1.1, eslint to 7.8.1, eslint-plugin-jsdoc to 30.3.1, globby to 11.0.1, js-yaml to 3.14.0, markdownlint-rule-helpers to 0.11.0, strip-json-comments to 3.1.1, tape-player to 0.1.1, typescript to 4.0.2, uglify-js to 3.10.3.
2020-09-05 17:08:49 -07:00
"strip-json-comments" : "~3.1.1" ,
2019-01-31 21:52:47 -08:00
"toml" : "~3.0.0" ,
Update dependencies: c8 to 7.7.2, eslint to 7.28.0, eslint-plugin-jsdoc to 35.1.3, eslint-plugin-unicorn to 33.0.1, globby to 11.0.3, js-yaml to 4.1.0, markdown-it-texmath to 0.9.0, markdownlint-rule-helpers to 0.14.0, ts-loader to 9.2.3, typescript to 4.3.2, webpack to 5.38.1, webpack-cli to 4.7.2.
2021-06-08 22:20:13 -07:00
"ts-loader" : "~9.2.3" ,
2018-04-25 21:14:20 -07:00
"tv4" : "~1.3.0" ,
Update dependencies: c8 to 7.7.2, eslint to 7.28.0, eslint-plugin-jsdoc to 35.1.3, eslint-plugin-unicorn to 33.0.1, globby to 11.0.3, js-yaml to 4.1.0, markdown-it-texmath to 0.9.0, markdownlint-rule-helpers to 0.14.0, ts-loader to 9.2.3, typescript to 4.3.2, webpack to 5.38.1, webpack-cli to 4.7.2.
2021-06-08 22:20:13 -07:00
"typescript" : "~4.3.2" ,
"webpack" : "~5.38.1" ,
"webpack-cli" : "~4.7.2"
2015-02-22 21:30:09 -08:00
} ,
"keywords" : [
"markdown" ,
"lint" ,
2015-04-17 21:57:10 -07:00
"md" ,
2017-11-20 21:53:50 -08:00
"CommonMark" ,
"markdownlint"
2021-01-05 20:55:09 -08:00
]
2015-02-22 21:30:09 -08:00
}