2015-02-22 21:30:09 -08:00
{
"name" : "markdownlint" ,
2025-01-14 23:39:35 -08:00
"version" : "0.37.4" ,
2016-03-11 21:36:39 -08:00
"description" : "A Node.js style checker and lint tool for Markdown/CommonMark files." ,
2024-11-28 20:36:44 -08:00
"type" : "module" ,
2022-07-05 14:33:31 -07:00
"exports" : {
2024-12-03 19:58:28 -08:00
"." : "./lib/exports.mjs" ,
"./async" : "./lib/exports-async.mjs" ,
"./promise" : "./lib/exports-promise.mjs" ,
"./sync" : "./lib/exports-sync.mjs" ,
2024-11-28 20:36:44 -08:00
"./helpers" : "./helpers/helpers.cjs" ,
2022-10-02 19:28:54 -07:00
"./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
} ,
2024-12-08 21:04:32 -08:00
"imports" : {
"#node-imports" : {
2024-12-17 21:21:57 -08:00
"markdownlint-imports-browser" : "./lib/node-imports-browser.mjs" ,
"markdownlint-imports-node" : "./lib/node-imports-node.mjs" ,
2024-12-08 21:04:32 -08:00
"browser" : "./lib/node-imports-browser.mjs" ,
"default" : "./lib/node-imports-node.mjs"
}
} ,
2024-12-03 19:58:28 -08:00
"types" : "./lib/types.d.mts" ,
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" ,
2024-11-28 20:36:44 -08:00
"build-config-example" : "node schema/build-config-example.mjs" ,
"build-config-schema" : "node schema/build-config-schema.mjs" ,
2025-01-12 18:27:14 -08:00
"build-declaration" : "tsc --allowJs --checkJs --declaration --emitDeclarationOnly --module nodenext --outDir dts --rootDir . --target es2015 lib/exports.mjs lib/exports-async.mjs lib/exports-promise.mjs lib/exports-sync.mjs lib/markdownlint.mjs lib/resolve-module.cjs && node scripts/index.mjs copy dts/lib/exports.d.mts lib/exports.d.mts && node scripts/index.mjs copy dts/lib/exports-async.d.mts lib/exports-async.d.mts && node scripts/index.mjs copy dts/lib/exports-promise.d.mts lib/exports-promise.d.mts && node scripts/index.mjs copy dts/lib/exports-sync.d.mts lib/exports-sync.d.mts && node scripts/index.mjs copy dts/lib/markdownlint.d.mts lib/markdownlint.d.mts && node scripts/index.mjs copy dts/lib/resolve-module.d.cts lib/resolve-module.d.cts && node scripts/index.mjs remove dts" ,
2024-11-28 20:36:44 -08:00
"build-demo" : "node scripts/index.mjs 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" ,
2025-01-02 22:42:14 -08:00
"ci" : "npm-run-all --continue-on-error --parallel build-demo lint serial-config-docs serial-declaration 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" ,
2024-11-28 20:36:44 -08:00
"example" : "cd example && node standalone.mjs && grunt markdownlint --force && gulp markdownlint" ,
2024-04-20 21:23:06 -07:00
"lint" : "eslint --max-warnings 0" ,
2024-11-28 20:36:44 -08:00
"lint-test-repos" : "ava --timeout=10m test/markdownlint-test-repos-*.mjs" ,
2022-10-29 23:21:45 -07:00
"serial-config-docs" : "npm run build-config && npm run build-docs" ,
2025-01-02 22:42:14 -08:00
"serial-declaration" : "npm run build-declaration && npm run test-declaration" ,
2025-03-06 20:24:20 -08:00
"test" : "ava --timeout=30s test/markdownlint-test.mjs test/markdownlint-test-config.mjs test/markdownlint-test-custom-rules.mjs test/markdownlint-test-exports.mjs test/markdownlint-test-fixes.mjs test/markdownlint-test-helpers.mjs test/markdownlint-test-micromark.mjs test/markdownlint-test-project.mjs test/markdownlint-test-result-object.mjs test/markdownlint-test-scenarios.mjs test/parse-configuration-test.mjs test/resolve-module-test.mjs helpers/test.cjs" ,
2023-07-29 19:02:16 -07:00
"test-cover" : "c8 --100 npm test" ,
2025-01-03 23:13:08 -08:00
"test-declaration" : "npm-run-all --continue-on-error --parallel test-declaration-cts test-declaration-mts" ,
"test-declaration-cts" : "cd example/typescript && node ../../scripts/index.mjs copy type-check.ts type-check-commonjs.cts && tsc --module commonjs --esModuleInterop type-check-commonjs.cts" ,
"test-declaration-mts" : "cd example/typescript && node ../../scripts/index.mjs copy type-check.ts type-check-nodenext.mts && tsc --module nodenext type-check-nodenext.mts && node type-check-nodenext.mjs" ,
2024-11-28 20:36:44 -08:00
"test-extra" : "ava --timeout=10m test/markdownlint-test-extra-parse.mjs test/markdownlint-test-extra-type.mjs" ,
2025-03-06 20:24:20 -08:00
"update-snapshots" : "ava --update-snapshots test/markdownlint-test-custom-rules.mjs test/markdownlint-test-exports.mjs test/markdownlint-test-micromark.mjs test/markdownlint-test-scenarios.mjs" ,
2024-11-28 20:36:44 -08:00
"update-snapshots-test-repos" : "ava --timeout=10m --update-snapshots test/markdownlint-test-repos-*.mjs" ,
2025-03-31 00:12:24 +00:00
"update-test-repos" : "node scripts/index.mjs remove ./test-repos && npm run clone-test-repos && npm run update-snapshots-test-repos" ,
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" : {
2025-02-28 03:20:15 +00:00
"micromark" : "4.0.2" ,
2025-02-28 03:13:55 +00:00
"micromark-core-commonmark" : "2.0.3" ,
2025-02-28 02:59:00 +00:00
"micromark-extension-directive" : "4.0.0" ,
2024-11-28 20:36:44 -08:00
"micromark-extension-gfm-autolink-literal" : "2.1.0" ,
"micromark-extension-gfm-footnote" : "2.1.0" ,
2025-01-30 02:41:07 +00:00
"micromark-extension-gfm-table" : "2.1.1" ,
2024-11-28 20:36:44 -08:00
"micromark-extension-math" : "3.1.0" ,
2025-02-28 02:59:09 +00:00
"micromark-util-types" : "2.0.2"
2015-02-25 18:00:08 -08:00
} ,
2015-02-22 21:30:09 -08:00
"devDependencies" : {
2025-03-24 02:58:30 +00:00
"@eslint/js" : "9.23.0" ,
2025-03-04 02:23:54 +00:00
"@stylistic/eslint-plugin" : "4.2.0" ,
2024-07-15 12:46:27 +00:00
"ajv" : "8.17.1" ,
2024-10-28 02:33:26 +00:00
"ava" : "6.2.0" ,
2024-12-11 02:20:54 +00:00
"c8" : "10.1.3" ,
2023-06-24 15:45:51 -07:00
"character-entities" : "2.0.2" ,
2025-04-07 02:16:45 +00:00
"eslint" : "9.24.0" ,
2025-03-24 02:58:53 +00:00
"eslint-plugin-jsdoc" : "50.6.9" ,
2025-03-27 03:09:30 +00:00
"eslint-plugin-n" : "17.17.0" ,
2024-11-15 02:41:22 +00:00
"eslint-plugin-regexp" : "2.7.0" ,
2025-03-25 03:06:49 +00:00
"eslint-plugin-unicorn" : "58.0.0" ,
2023-06-24 15:45:51 -07:00
"gemoji" : "8.1.0" ,
2025-02-10 03:00:16 +00:00
"globby" : "14.1.0" ,
2022-01-13 22:22:20 -08:00
"js-yaml" : "4.1.0" ,
2025-01-15 02:17:52 +00:00
"json-schema-to-typescript" : "15.0.4" ,
2024-06-25 02:32:13 +00:00
"jsonc-parser" : "3.3.1" ,
2024-12-25 20:42:32 -08:00
"markdown-it" : "14.1.0" ,
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" ,
2025-02-26 02:33:55 +00:00
"markdownlint-rule-extended-ascii" : "0.2.1" ,
2024-12-17 21:21:57 -08:00
"nano-spawn" : "0.2.0" ,
2022-01-13 22:22:20 -08:00
"npm-run-all" : "4.1.5" ,
2025-03-07 04:04:28 +00:00
"terser-webpack-plugin" : "5.3.14" ,
2022-01-13 22:22:20 -08:00
"toml" : "3.0.0" ,
2025-04-07 02:16:29 +00:00
"typescript" : "5.8.3" ,
2025-02-14 02:30:16 +00:00
"webpack" : "5.98.0" ,
2024-12-23 03:02:04 +00:00
"webpack-cli" : "6.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
}