markdownlint/package.json

72 lines
3.2 KiB
JSON
Raw Normal View History

{
"name": "markdownlint",
2020-11-24 16:49:12 -08:00
"version": "0.22.0",
"description": "A Node.js style checker and lint tool for Markdown/CommonMark files.",
"main": "lib/markdownlint.js",
"types": "lib/markdownlint.d.ts",
"author": "David Anson (https://dlaa.me/)",
"license": "MIT",
"homepage": "https://github.com/DavidAnson/markdownlint",
"repository": {
"type": "git",
"url": "https://github.com/DavidAnson/markdownlint.git"
},
"bugs": "https://github.com/DavidAnson/markdownlint/issues",
"scripts": {
"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",
2020-12-09 11:51:57 -05: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",
"test-extra": "node test/markdownlint-test-extra.js",
"lint": "eslint --max-warnings 0 .",
"ci": "npm run test-cover && npm run lint && npm run build-declaration && npm run test-declaration && npm run build-config-schema && npm run build-demo && git diff --exit-code",
"build-config-schema": "node schema/build-config-schema.js",
"build-declaration": "tsc --allowJs --declaration --emitDeclarationOnly --resolveJsonModule lib/markdownlint.js && rimraf 'lib/{c,md,r}*.d.ts' 'helpers/*.d.ts'",
"build-demo": "cpy node_modules/markdown-it/dist/markdown-it.min.js demo && cd demo && rimraf markdownlint-browser.* && webpack",
"build-example": "npm install --no-save --ignore-scripts grunt grunt-cli gulp through2",
"example": "cd example && node standalone.js && grunt markdownlint --force && gulp markdownlint",
"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",
"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",
"lint-test-repos": "node test/markdownlint-test-repos.js",
"clean-test-repos": "rimraf test-repos"
},
2018-03-06 21:49:16 -08:00
"engines": {
"node": ">=10"
2018-03-06 21:49:16 -08:00
},
"dependencies": {
"markdown-it": "12.0.2"
},
"devDependencies": {
"@types/node": "~14.14.9",
"c8": "~7.3.5",
"cpy-cli": "~3.1.1",
"eslint": "~7.14.0",
"eslint-plugin-jsdoc": "~30.7.8",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-unicorn": "~23.0.0",
"globby": "~11.0.1",
"js-yaml": "~3.14.0",
"markdown-it-for-inline": "~0.1.1",
"markdown-it-sub": "~1.0.0",
"markdown-it-sup": "~1.0.0",
"markdown-it-texmath": "~0.8.0",
"markdownlint-rule-helpers": "~0.12.0",
"rimraf": "~3.0.2",
"strip-json-comments": "~3.1.1",
2020-09-05 17:24:52 -07:00
"tape": "~5.0.1",
"tape-player": "~0.1.1",
"toml": "~3.0.0",
"ts-loader": "~8.0.14",
2018-04-25 21:14:20 -07:00
"tv4": "~1.3.0",
"typescript": "~4.1.2",
"webpack": "~5.11.1",
"webpack-cli": "~4.3.1"
},
"keywords": [
"markdown",
"lint",
"md",
"CommonMark",
"markdownlint"
]
}