2015-02-22 21:30:09 -08:00
{
"name" : "markdownlint" ,
2023-09-15 20:28:05 -07:00
"version" : "0.31.1" ,
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" ,
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" ,
2023-01-20 04:10:18 +00:00
"build-declaration" : "tsc --allowJs --declaration --emitDeclarationOnly --module commonjs --resolveJsonModule --target es2015 lib/markdownlint.js && node scripts delete 'lib/{c,md,r}*.d.ts' 'micromark/*.d.cts' 'helpers/*.d.{cts,ts}'" ,
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" ,
2023-05-19 20:41:22 -07:00
"install-micromark" : "cd micromark && npm install --no-package-lock" ,
2023-02-23 22:14:44 -08:00
"lint" : "eslint --ext .js,.cjs,.mjs --max-warnings 0 ." ,
2023-02-25 16:26:54 -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" ,
2021-01-07 23:18:24 -08:00
"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" ,
2023-01-09 21:59:54 -08:00
"update-snapshots" : "ava --update-snapshots test/markdownlint-test-micromark.mjs test/markdownlint-test-scenarios.js" ,
2023-06-01 21:21:52 -07: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-05-02 19:45:52 -07:00
"node" : ">=16"
2018-03-06 21:49:16 -08:00
} ,
2015-02-25 18:00:08 -08:00
"dependencies" : {
2023-09-27 02:30:02 +00:00
"markdown-it" : "13.0.2" ,
2023-07-16 22:07:34 -07:00
"markdownlint-micromark" : "0.1.7"
2015-02-25 18:00:08 -08:00
} ,
2015-02-22 21:30:09 -08:00
"devDependencies" : {
2023-09-26 02:17:36 +00:00
"@babel/core" : "7.23.0" ,
2023-09-18 04:43:13 +00:00
"@babel/preset-env" : "7.22.20" ,
2023-09-27 22:48:01 -07:00
"@hyperjump/json-schema" : "1.6.0" ,
2023-06-19 03:01:11 +00:00
"ava" : "5.3.1" ,
2023-07-10 02:54:23 +00:00
"babel-loader" : "9.1.3" ,
2023-07-30 02:03:36 +00:00
"c8" : "8.0.1" ,
2023-06-24 15:45:51 -07:00
"character-entities" : "2.0.2" ,
2023-09-25 02:56:59 +00:00
"eslint" : "8.50.0" ,
2022-02-13 16:57:09 -08:00
"eslint-plugin-es" : "4.1.0" ,
2023-09-21 02:18:22 +00:00
"eslint-plugin-jsdoc" : "46.8.2" ,
2023-09-12 02:16:28 +00:00
"eslint-plugin-n" : "16.1.0" ,
2023-05-10 03:08:37 +00:00
"eslint-plugin-regexp" : "1.15.0" ,
2023-07-26 02:58:41 +00:00
"eslint-plugin-unicorn" : "48.0.1" ,
2023-06-24 15:45:51 -07:00
"gemoji" : "8.1.0" ,
2023-07-06 02:07:47 +00:00
"globby" : "13.2.2" ,
2022-01-13 22:22:20 -08:00
"js-yaml" : "4.1.0" ,
"markdown-it-for-inline" : "0.1.1" ,
"markdown-it-sub" : "1.0.0" ,
"markdown-it-sup" : "1.0.0" ,
2023-09-08 04:31:41 +00:00
"markdownlint-rule-helpers" : "0.22.0" ,
2022-01-13 22:22:20 -08:00
"npm-run-all" : "4.1.5" ,
2023-07-05 02:29:49 +00:00
"strip-json-comments" : "5.0.1" ,
2023-05-18 02:59:04 +00:00
"terser-webpack-plugin" : "5.3.9" ,
2022-01-13 22:22:20 -08:00
"toml" : "3.0.0" ,
2023-08-27 00:47:17 +00:00
"typescript" : "5.2.2" ,
2023-07-18 02:58:37 +00:00
"webpack" : "5.88.2" ,
2023-06-08 03:43:53 +00:00
"webpack-cli" : "5.1.4" ,
2023-08-29 03:01:20 +00:00
"yaml" : "2.3.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
}