2015-02-22 21:30:09 -08:00
{
"name" : "markdownlint" ,
2024-08-28 20:41:14 -07:00
"version" : "0.35.0" ,
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" ,
2023-09-07 21:27:55 -07:00
"url" : "git+https://github.com/DavidAnson/markdownlint.git"
2015-02-22 21:30:09 -08:00
} ,
2015-04-17 21:57:10 -07:00
"bugs" : "https://github.com/DavidAnson/markdownlint/issues" ,
2023-10-01 23:06:48 -07:00
"funding" : "https://github.com/sponsors/DavidAnson" ,
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" ,
2024-02-27 20:42:09 -08:00
"build-declaration" : "tsc --allowJs --declaration --emitDeclarationOnly --module commonjs --outDir dts --resolveJsonModule --target es2015 lib/markdownlint.js && node scripts copy dts/lib/markdownlint.d.ts lib/markdownlint.d.ts && node scripts remove dts" ,
2023-05-28 12:57:50 -07:00
"build-demo" : "node scripts copy node_modules/markdown-it/dist/markdown-it.min.js demo/markdown-it.min.js && node scripts copy node_modules/markdownlint-micromark/micromark-browser.js demo/micromark-browser.js && node scripts copy node_modules/markdownlint-micromark/micromark-html-browser.js demo/micromark-html-browser.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" ,
2023-01-14 15:05:04 -08:00
"build-micromark" : "cd micromark && npm run build" ,
2023-02-08 20:50:28 -08:00
"ci" : "npm-run-all --continue-on-error --parallel lint serial-config-docs serial-declaration-demo test-cover && git diff --exit-code" ,
2022-12-19 21:15:35 -08:00
"clone-test-repos-apache-airflow" : "cd test-repos && git clone https://github.com/apache/airflow apache-airflow --depth 1 --no-tags --quiet" ,
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" ,
2023-06-15 04:25:33 +00:00
"clone-test-repos-electron-electron" : "cd test-repos && git clone https://github.com/electron/electron electron-electron --depth 1 --no-tags --quiet && cd electron-electron && npm install --ignore-scripts @electron/lint-roller typescript@4" ,
2021-06-13 16:37:29 -07:00
"clone-test-repos-eslint-eslint" : "cd test-repos && git clone https://github.com/eslint/eslint eslint-eslint --depth 1 --no-tags --quiet" ,
2022-12-14 23:04:47 -08:00
"clone-test-repos-mdn-content" : "cd test-repos && git clone https://github.com/mdn/content mdn-content --depth 1 --no-tags --quiet" ,
2021-06-13 16:37:29 -07:00
"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" ,
2023-06-01 21:21:52 -07:00
"clone-test-repos" : "mkdir test-repos && cd test-repos && npm run clone-test-repos-apache-airflow && npm run clone-test-repos-dotnet-docs && npm run clone-test-repos-electron-electron && npm run clone-test-repos-eslint-eslint && npm run clone-test-repos-mdn-content && 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-v8-v8-dev && npm run clone-test-repos-webhintio-hint && npm run clone-test-repos-webpack-webpack-js-org" ,
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" ,
2023-05-19 20:31:58 -07:00
"docker-npm-install" : "docker run --rm --tty --name npm-install --volume $PWD:/home/workdir --workdir /home/workdir --user node node:latest npm install" ,
"docker-npm-run-upgrade" : "docker run --rm --tty --name npm-run-upgrade --volume $PWD:/home/workdir --workdir /home/workdir --user node node:latest npm run upgrade" ,
2024-01-01 22:12:42 -08:00
"install-micromark" : "cd micromark && npm install" ,
2024-04-20 21:23:06 -07:00
"lint" : "eslint --max-warnings 0" ,
2023-12-30 19:14:31 -08:00
"lint-test-repos" : "ava --timeout=10m 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" ,
2023-08-14 19:50:49 -07:00
"test" : "ava --timeout=30s test/markdownlint-test.js test/markdownlint-test-config.js test/markdownlint-test-custom-rules.js test/markdownlint-test-helpers.js test/markdownlint-test-micromark.mjs test/markdownlint-test-result-object.js test/markdownlint-test-scenarios.js" ,
2023-07-29 19:02:16 -07:00
"test-cover" : "c8 --100 npm test" ,
2024-03-27 20:54:59 -07:00
"test-declaration" : "cd example/typescript && tsc --module nodenext && tsc --module commonjs && node type-check.js" ,
2023-12-31 21:51:34 -08:00
"test-extra" : "ava --timeout=10m test/markdownlint-test-extra-parse.js test/markdownlint-test-extra-type.js" ,
2023-01-09 21:59:54 -08:00
"update-snapshots" : "ava --update-snapshots test/markdownlint-test-micromark.mjs test/markdownlint-test-scenarios.js" ,
2023-12-30 19:14:31 -08:00
"update-snapshots-test-repos" : "ava --timeout=10m --update-snapshots test/markdownlint-test-repos-*.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" : {
2023-11-07 19:30:03 -08:00
"node" : ">=18"
2018-03-06 21:49:16 -08:00
} ,
2015-02-25 18:00:08 -08:00
"dependencies" : {
2024-03-19 02:53:28 +00:00
"markdown-it" : "14.1.0" ,
2024-03-27 20:54:59 -07:00
"markdownlint-micromark" : "0.1.10"
2015-02-25 18:00:08 -08:00
} ,
2015-02-22 21:30:09 -08:00
"devDependencies" : {
2024-08-26 02:45:16 +00:00
"@eslint/js" : "9.9.1" ,
2024-07-15 12:46:27 +00:00
"ajv" : "8.17.1" ,
2024-05-06 16:04:54 +00:00
"ava" : "6.1.3" ,
2024-06-13 02:15:58 +00:00
"c8" : "10.1.2" ,
2023-06-24 15:45:51 -07:00
"character-entities" : "2.0.2" ,
2024-08-26 02:45:30 +00:00
"eslint" : "9.9.1" ,
2024-08-15 03:00:13 +00:00
"eslint-plugin-jsdoc" : "50.2.2" ,
2024-08-06 02:37:56 +00:00
"eslint-plugin-n" : "17.10.2" ,
2024-05-22 02:20:42 +00:00
"eslint-plugin-regexp" : "2.6.0" ,
2024-07-25 02:49:45 +00:00
"eslint-plugin-unicorn" : "55.0.0" ,
2023-06-24 15:45:51 -07:00
"gemoji" : "8.1.0" ,
2024-07-01 02:11:19 +00:00
"globby" : "14.0.2" ,
2022-01-13 22:22:20 -08:00
"js-yaml" : "4.1.0" ,
2024-08-22 03:15:34 +00:00
"json-schema-to-typescript" : "15.0.1" ,
2024-06-25 02:32:13 +00:00
"jsonc-parser" : "3.3.1" ,
2023-12-05 07:33:27 +00:00
"markdown-it-for-inline" : "2.0.1" ,
2023-12-06 02:35:41 +00:00
"markdown-it-sub" : "2.0.0" ,
2023-12-06 02:47:58 +00:00
"markdown-it-sup" : "2.0.0" ,
2024-05-13 22:57:47 -07:00
"markdownlint-rule-extended-ascii" : "0.1.0" ,
2022-01-13 22:22:20 -08:00
"npm-run-all" : "4.1.5" ,
2023-12-30 00:10:55 +00:00
"terser-webpack-plugin" : "5.3.10" ,
2022-01-13 22:22:20 -08:00
"toml" : "3.0.0" ,
2024-07-24 05:09:30 +00:00
"typescript" : "5.5.4" ,
2024-08-23 02:10:42 +00:00
"webpack" : "5.94.0" ,
2024-02-17 15:33:27 -08:00
"webpack-cli" : "5.1.4"
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
}