2015-02-22 21:30:09 -08:00
|
|
|
{
|
|
|
|
|
"name": "markdownlint",
|
2020-11-24 16:49:12 -08:00
|
|
|
"version": "0.22.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": {
|
2016-10-05 22:21:54 -07:00
|
|
|
"build-config-schema": "node schema/build-config-schema.js",
|
2020-10-16 14:48:03 -07:00
|
|
|
"build-declaration": "tsc --allowJs --declaration --emitDeclarationOnly --resolveJsonModule lib/markdownlint.js && rimraf 'lib/{c,md,r}*.d.ts' 'helpers/*.d.ts'",
|
2021-01-07 23:23:02 -08:00
|
|
|
"build-demo": "cpy node_modules/markdown-it/dist/markdown-it.min.js demo && cd demo && rimraf markdownlint-browser.* && 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-01-07 23:32:58 -08:00
|
|
|
"ci": "npm-run-all --continue-on-error --parallel test-cover lint declaration build-config-schema build-demo && git diff --exit-code",
|
2021-01-07 23:18:24 -08:00
|
|
|
"clean-test-repos": "rimraf test-repos",
|
2020-12-05 15:56:30 -05:00
|
|
|
"clone-test-repos": "mkdir test-repos && cd test-repos && git clone https://github.com/eslint/eslint eslint-eslint --depth 1 --no-tags --quiet && git clone https://github.com/mkdocs/mkdocs mkdocs-mkdocs --depth 1 --no-tags --quiet && git clone https://github.com/pi-hole/docs pi-hole-docs --depth 1 --no-tags --quiet",
|
2020-05-08 12:27:41 -07:00
|
|
|
"clone-test-repos-large": "npm run clone-test-repos && cd test-repos && git clone https://github.com/dotnet/docs dotnet-docs --depth 1 --no-tags --quiet",
|
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",
|
|
|
|
|
"lint": "eslint --max-warnings 0 .",
|
2020-05-08 11:53:08 -07:00
|
|
|
"lint-test-repos": "node test/markdownlint-test-repos.js",
|
2021-01-07 23:18:24 -08:00
|
|
|
"test": "tape test/markdownlint-test.js test/markdownlint-test-custom-rules.js test/markdownlint-test-helpers.js test/markdownlint-test-result-object.js test/markdownlint-test-scenarios.js",
|
|
|
|
|
"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",
|
|
|
|
|
"test-extra": "node test/markdownlint-test-extra.js"
|
2015-02-22 21:30:09 -08:00
|
|
|
},
|
2018-03-06 21:49:16 -08:00
|
|
|
"engines": {
|
2020-01-09 21:13:11 -08:00
|
|
|
"node": ">=10"
|
2018-03-06 21:49:16 -08:00
|
|
|
},
|
2015-02-25 18:00:08 -08:00
|
|
|
"dependencies": {
|
2020-11-24 11:11:32 -08:00
|
|
|
"markdown-it": "12.0.2"
|
2015-02-25 18:00:08 -08:00
|
|
|
},
|
2015-02-22 21:30:09 -08:00
|
|
|
"devDependencies": {
|
2020-11-24 16:25:08 -08:00
|
|
|
"@types/node": "~14.14.9",
|
|
|
|
|
"c8": "~7.3.5",
|
Update dependencies: @types/node to 14.6.4, browserify to 16.5.2, c8 to 7.3.0, cpy-cli to 3.1.1, eslint to 7.8.1, eslint-plugin-jsdoc to 30.3.1, globby to 11.0.1, js-yaml to 3.14.0, markdownlint-rule-helpers to 0.11.0, strip-json-comments to 3.1.1, tape-player to 0.1.1, typescript to 4.0.2, uglify-js to 3.10.3.
2020-09-05 17:08:49 -07:00
|
|
|
"cpy-cli": "~3.1.1",
|
2020-11-24 16:25:08 -08:00
|
|
|
"eslint": "~7.14.0",
|
|
|
|
|
"eslint-plugin-jsdoc": "~30.7.8",
|
2020-09-06 19:49:35 -07:00
|
|
|
"eslint-plugin-node": "~11.1.0",
|
2020-11-24 16:25:08 -08:00
|
|
|
"eslint-plugin-unicorn": "~23.0.0",
|
Update dependencies: @types/node to 14.6.4, browserify to 16.5.2, c8 to 7.3.0, cpy-cli to 3.1.1, eslint to 7.8.1, eslint-plugin-jsdoc to 30.3.1, globby to 11.0.1, js-yaml to 3.14.0, markdownlint-rule-helpers to 0.11.0, strip-json-comments to 3.1.1, tape-player to 0.1.1, typescript to 4.0.2, uglify-js to 3.10.3.
2020-09-05 17:08:49 -07:00
|
|
|
"globby": "~11.0.1",
|
|
|
|
|
"js-yaml": "~3.14.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",
|
2020-10-16 20:59:04 -07:00
|
|
|
"markdown-it-texmath": "~0.8.0",
|
2020-11-24 16:25:08 -08:00
|
|
|
"markdownlint-rule-helpers": "~0.12.0",
|
2021-01-07 23:32:58 -08:00
|
|
|
"npm-run-all": "~4.1.5",
|
2020-04-10 19:25:33 -07:00
|
|
|
"rimraf": "~3.0.2",
|
Update dependencies: @types/node to 14.6.4, browserify to 16.5.2, c8 to 7.3.0, cpy-cli to 3.1.1, eslint to 7.8.1, eslint-plugin-jsdoc to 30.3.1, globby to 11.0.1, js-yaml to 3.14.0, markdownlint-rule-helpers to 0.11.0, strip-json-comments to 3.1.1, tape-player to 0.1.1, typescript to 4.0.2, uglify-js to 3.10.3.
2020-09-05 17:08:49 -07:00
|
|
|
"strip-json-comments": "~3.1.1",
|
2020-09-05 17:24:52 -07:00
|
|
|
"tape": "~5.0.1",
|
Update dependencies: @types/node to 14.6.4, browserify to 16.5.2, c8 to 7.3.0, cpy-cli to 3.1.1, eslint to 7.8.1, eslint-plugin-jsdoc to 30.3.1, globby to 11.0.1, js-yaml to 3.14.0, markdownlint-rule-helpers to 0.11.0, strip-json-comments to 3.1.1, tape-player to 0.1.1, typescript to 4.0.2, uglify-js to 3.10.3.
2020-09-05 17:08:49 -07:00
|
|
|
"tape-player": "~0.1.1",
|
2019-01-31 21:52:47 -08:00
|
|
|
"toml": "~3.0.0",
|
2021-01-06 19:45:15 -08:00
|
|
|
"ts-loader": "~8.0.14",
|
2018-04-25 21:14:20 -07:00
|
|
|
"tv4": "~1.3.0",
|
2020-11-24 16:25:08 -08:00
|
|
|
"typescript": "~4.1.2",
|
2021-01-05 20:55:09 -08:00
|
|
|
"webpack": "~5.11.1",
|
|
|
|
|
"webpack-cli": "~4.3.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
|
|
|
}
|