2015-02-22 21:30:09 -08:00
{
"name" : "markdownlint" ,
2021-12-27 18:43:25 -08:00
"version" : "0.25.0" ,
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" ,
2021-11-11 22:02:51 -08:00
"build-declaration" : "tsc --allowJs --declaration --emitDeclarationOnly --resolveJsonModule lib/markdownlint.js && node scripts delete 'lib/{c,md,r}*.d.ts' 'helpers/*.d.ts'" ,
"build-demo" : "node scripts copy node_modules/markdown-it/dist/markdown-it.min.js demo/markdown-it.min.js && cd demo && 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-11-13 20:42:36 -08:00
"ci" : "npm-run-all --continue-on-error --parallel build-config lint serial-declaration-demo test-cover && git diff --exit-code" ,
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" ,
2021-10-29 21:48:24 -07:00
"docker-npm-install" : "docker run --rm --tty --name npm-install --volume $PWD:/home/workdir --workdir /home/workdir --user node node:16 npm install" ,
2021-12-19 03:41:05 +00:00
"docker-npm-run-upgrade" : "docker run --rm --tty --name npm-run-upgrade --volume $PWD:/home/workdir --workdir /home/workdir --user node node:16 npm run upgrade" ,
2021-01-07 23:18:24 -08:00
"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-11-13 21:17:43 -08:00
"serial-declaration-demo" : "npm run build-declaration && npm-run-all --continue-on-error --parallel build-demo test-declaration" ,
2021-11-30 22:03:31 -08:00
"test" : "ava test/markdownlint-test.js test/markdownlint-test-config.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-12-19 03:41:05 +00:00
"test-extra" : "ava --timeout=5m test/markdownlint-test-extra-parse.js test/markdownlint-test-extra-type.js" ,
"upgrade" : "npx npm-check-updates --upgrade"
2015-02-22 21:30:09 -08:00
} ,
2018-03-06 21:49:16 -08:00
"engines" : {
2021-10-30 17:32:51 -07:00
"node" : ">=12"
2018-03-06 21:49:16 -08:00
} ,
2015-02-25 18:00:08 -08:00
"dependencies" : {
2022-01-11 22:43:10 -08:00
"markdown-it" : "12.3.2"
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" ,
2021-12-19 03:55:10 +00:00
"c8" : "~7.10.0" ,
2021-12-27 04:37:51 +00:00
"eslint" : "~8.5.0" ,
"eslint-plugin-jsdoc" : "~37.4.0" ,
2020-09-06 19:49:35 -07:00
"eslint-plugin-node" : "~11.1.0" ,
2021-12-19 04:04:53 +00:00
"eslint-plugin-unicorn" : "~39.0.0" ,
2021-12-27 22:40:44 +00:00
"globby" : "~12.0.2" ,
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
"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" ,
2021-12-19 03:55:10 +00:00
"markdown-it-texmath" : "~0.9.7" ,
2021-12-23 20:52:17 +00:00
"markdownlint-rule-github-internal-links" : "~0.1.0" ,
2021-12-19 03:55:10 +00:00
"markdownlint-rule-helpers" : "~0.15.0" ,
2021-01-07 23:32:58 -08:00
"npm-run-all" : "~4.1.5" ,
2021-12-27 21:59:56 +00:00
"strip-json-comments" : "~4.0.0" ,
2019-01-31 21:52:47 -08:00
"toml" : "~3.0.0" ,
2021-12-19 03:55:10 +00:00
"ts-loader" : "~9.2.6" ,
2018-04-25 21:14:20 -07:00
"tv4" : "~1.3.0" ,
2021-12-19 03:55:10 +00:00
"typescript" : "~4.5.4" ,
"webpack" : "~5.65.0" ,
"webpack-cli" : "~4.9.1"
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
}