package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "markdown-it",
  3. "version": "13.0.1",
  4. "description": "Markdown-it - modern pluggable markdown parser.",
  5. "keywords": [
  6. "markdown",
  7. "parser",
  8. "commonmark",
  9. "markdown-it",
  10. "markdown-it-plugin"
  11. ],
  12. "repository": "markdown-it/markdown-it",
  13. "license": "MIT",
  14. "main": "index.js",
  15. "bin": {
  16. "markdown-it": "bin/markdown-it.js"
  17. },
  18. "scripts": {
  19. "lint": "eslint .",
  20. "test": "npm run lint && nyc mocha && node support/specsplit.js",
  21. "coverage": "npm run test && nyc report --reporter html",
  22. "report-coveralls": "nyc --reporter=lcov mocha",
  23. "doc": "node support/build_doc.js",
  24. "gh-doc": "npm run doc && gh-pages -d apidoc -f",
  25. "demo": "npm run lint && node support/build_demo.js",
  26. "gh-demo": "npm run demo && gh-pages -d demo -f -b master -r git@github.com:markdown-it/markdown-it.github.io.git",
  27. "browserify": "rollup -c support/rollup.config.js",
  28. "benchmark-deps": "npm install --prefix benchmark/extra/ -g marked@0.3.6 commonmark@0.26.0 markdown-it/markdown-it.git#2.2.1",
  29. "specsplit": "support/specsplit.js good -o test/fixtures/commonmark/good.txt && support/specsplit.js bad -o test/fixtures/commonmark/bad.txt && support/specsplit.js",
  30. "todo": "grep 'TODO' -n -r ./lib 2>/dev/null",
  31. "prepublishOnly": "npm run gh-demo && npm run gh-doc"
  32. },
  33. "files": [
  34. "index.js",
  35. "bin/",
  36. "lib/",
  37. "dist/"
  38. ],
  39. "dependencies": {
  40. "argparse": "^2.0.1",
  41. "entities": "~3.0.1",
  42. "linkify-it": "^4.0.1",
  43. "mdurl": "^1.0.1",
  44. "uc.micro": "^1.0.5"
  45. },
  46. "devDependencies": {
  47. "@rollup/plugin-commonjs": "^16.0.0",
  48. "@rollup/plugin-json": "^4.1.0",
  49. "@rollup/plugin-node-resolve": "^10.0.0",
  50. "ansi": "^0.3.0",
  51. "autoprefixer-stylus": "^1.0.0",
  52. "benchmark": "~2.1.0",
  53. "chai": "^4.2.0",
  54. "coveralls": "^3.0.4",
  55. "eslint": "^8.4.1",
  56. "express": "^4.14.0",
  57. "gh-pages": "^3.1.0",
  58. "highlight.js": "^10.7.2",
  59. "jest-worker": "^26.6.2",
  60. "markdown-it-abbr": "^1.0.4",
  61. "markdown-it-container": "^3.0.0",
  62. "markdown-it-deflist": "^2.0.0",
  63. "markdown-it-emoji": "^2.0.0",
  64. "markdown-it-footnote": "^3.0.1",
  65. "markdown-it-for-inline": "^0.1.0",
  66. "markdown-it-ins": "^3.0.0",
  67. "markdown-it-mark": "^3.0.0",
  68. "markdown-it-sub": "^1.0.0",
  69. "markdown-it-sup": "^1.0.0",
  70. "markdown-it-testgen": "^0.1.3",
  71. "mocha": "^9.1.3",
  72. "ndoc": "^6.0.0",
  73. "needle": "^3.0.0",
  74. "nyc": "^15.0.1",
  75. "pug-cli": "^1.0.0-alpha6",
  76. "rollup": "^2.29.0",
  77. "rollup-plugin-node-polyfills": "^0.2.1",
  78. "rollup-plugin-terser": "^7.0.2",
  79. "shelljs": "^0.8.4",
  80. "stylus": "^0.55.0",
  81. "supertest": "^6.0.1"
  82. },
  83. "mocha": {
  84. "inline-diffs": true,
  85. "timeout": 60000
  86. }
  87. }