2015-02-22 21:30:09 -08:00
{
"name" : "markdownlint" ,
2022-08-08 21:05:50 -07:00
"version" : "0.26.2" ,
2016-03-11 21:36:39 -08:00
"description" : "A Node.js style checker and lint tool for Markdown/CommonMark files." ,
2022-04-21 21:09:07 -07:00
"type" : "commonjs" ,
2022-07-05 14:33:31 -07:00
"main" : "./lib/markdownlint.js" ,
"exports" : {
"." : "./lib/markdownlint.js" ,
2022-10-02 19:28:54 -07:00
"./helpers" : "./helpers/helpers.js" ,
"./style/all" : "./style/all.json" ,
"./style/cirosantilli" : "./style/cirosantilli.json" ,
2022-10-02 01:15:14 -04:00
"./style/prettier" : "./style/prettier.json" ,
2022-10-02 19:28:54 -07:00
"./style/relaxed" : "./style/relaxed.json"
2022-07-05 14:33:31 -07: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" ,
2022-06-08 22:10:27 -07:00
"build-declaration" : "tsc --allowJs --declaration --emitDeclarationOnly --module commonjs --resolveJsonModule --target es2015 lib/markdownlint.js && node scripts delete 'lib/{c,md,r}*.d.ts' 'helpers/*.d.ts'" ,
2021-11-11 22:02:51 -08:00
"build-demo" : "node scripts copy node_modules/markdown-it/dist/markdown-it.min.js demo/markdown-it.min.js && cd demo && webpack --no-stats" ,
2022-10-29 23:21:45 -07:00
"build-docs" : "node doc-build/build-rules.mjs" ,
2017-11-22 21:41:14 -08:00
"build-example" : "npm install --no-save --ignore-scripts grunt grunt-cli gulp through2" ,
2022-10-29 23:21:45 -07:00
"ci" : "npm-run-all --continue-on-error --parallel lint serial-config-docs 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" ,
2022-10-26 03:26:59 +00:00
"lint" : "eslint --ext .js,.mjs --max-warnings 0 ." ,
2021-01-10 20:50:35 -08:00
"lint-test-repos" : "ava --timeout=5m test/markdownlint-test-repos.js" ,
2022-10-29 23:21:45 -07:00
"serial-config-docs" : "npm run build-config && npm run build-docs" ,
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" ,
2022-05-10 06:11:46 +00:00
"update-snapshots" : "ava --update-snapshots test/markdownlint-test-scenarios.js" ,
2022-01-13 22:17:11 -08:00
"upgrade" : "npx --yes npm-check-updates --upgrade"
2015-02-22 21:30:09 -08:00
} ,
2018-03-06 21:49:16 -08:00
"engines" : {
2022-10-30 15:16:14 -07:00
"node" : ">=14.18.0"
2018-03-06 21:49:16 -08:00
} ,
2015-02-25 18:00:08 -08:00
"dependencies" : {
2022-05-18 21:50:48 -07:00
"markdown-it" : "13.0.1"
2015-02-25 18:00:08 -08:00
} ,
2015-02-22 21:30:09 -08:00
"devDependencies" : {
2022-11-15 02:07:08 +00:00
"ava" : "5.1.0" ,
2022-08-15 00:06:59 -07:00
"c8" : "7.12.0" ,
2022-12-05 02:10:20 +00:00
"eslint" : "8.29.0" ,
2022-02-13 16:57:09 -08:00
"eslint-plugin-es" : "4.1.0" ,
2022-11-25 02:09:37 +00:00
"eslint-plugin-jsdoc" : "39.6.4" ,
2022-12-06 02:05:01 +00:00
"eslint-plugin-n" : "15.6.0" ,
2022-12-13 04:38:38 +00:00
"eslint-plugin-unicorn" : "45.0.2" ,
2022-12-13 02:04:44 +00:00
"globby" : "13.1.3" ,
2022-01-13 22:22:20 -08:00
"js-yaml" : "4.1.0" ,
2022-10-19 21:12:51 -07:00
"markdown-it-footnote" : "3.0.3" ,
2022-01-13 22:22:20 -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.11.3, eslint to 8.18.0, eslint-plugin-jsdoc to 39.3.3, eslint-plugin-unicorn to 42.0.0, globby to 13.1.2, markdown-it-texmath to 1.0.0, markdownlint-rule-helpers to 0.16.0, ts-loader to 9.3.0, typescript to 4.7.4, webpack to 5.73.0, webpack-cli to 4.10.0.
2022-06-20 04:41:08 +00:00
"markdown-it-texmath" : "1.0.0" ,
2022-01-13 22:22:20 -08:00
"markdownlint-rule-github-internal-links" : "0.1.0" ,
2022-08-14 19:22:29 -07:00
"markdownlint-rule-helpers" : "0.17.2" ,
2022-01-13 22:22:20 -08:00
"npm-run-all" : "4.1.5" ,
2022-08-14 19:23:55 -07:00
"strip-json-comments" : "5.0.0" ,
2022-08-29 20:50:43 -07:00
"terser-webpack-plugin" : "5.3.6" ,
2022-01-13 22:22:20 -08:00
"toml" : "3.0.0" ,
2022-12-01 02:06:47 +00:00
"ts-loader" : "9.4.2" ,
2022-01-13 22:22:20 -08:00
"tv4" : "1.3.0" ,
2022-12-08 02:08:28 +00:00
"typescript" : "4.9.4" ,
2022-11-10 02:17:13 +00:00
"webpack" : "5.75.0" ,
2022-12-06 02:04:50 +00:00
"webpack-cli" : "5.0.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
}