版博士V2.0程序
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

70 Zeilen
1.8 KiB

  1. {
  2. "name": "markdown-it-prism",
  3. "version": "2.3.0",
  4. "description": "Highlights code blocks in markdown-it using Prism.",
  5. "keywords": [
  6. "markdown-it",
  7. "markdown-it-plugin",
  8. "highlight",
  9. "prism",
  10. "prismjs"
  11. ],
  12. "homepage": "https://github.com/jGleitz/markdown-it-prism",
  13. "license": "MIT",
  14. "author": {
  15. "name": "Joshua Gleitze",
  16. "url": "https://joshuagleitze.de"
  17. },
  18. "files": [
  19. "README.md",
  20. "LICENSE",
  21. "CHANGELOG.md",
  22. "build/index.js",
  23. "build/index.d.ts"
  24. ],
  25. "main": "build/index.js",
  26. "types": "build/index.d.ts",
  27. "engines": {
  28. "node": ">=6.0.0"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/jGleitz/markdown-it-prism.git"
  33. },
  34. "scripts": {
  35. "build:transpile": "babel ./src --out-dir build --extensions '.ts'",
  36. "build:types": "tsc --project src",
  37. "lint": "npm-run-all lint:*",
  38. "lint:types": "tsc",
  39. "lint:style": "eslint .",
  40. "prepack": "npm-run-all build:*",
  41. "unittest": "jest",
  42. "test": "npm-run-all lint:* unittest"
  43. },
  44. "dependencies": {
  45. "prismjs": "1.29.0"
  46. },
  47. "devDependencies": {
  48. "@babel/cli": "7.18.10",
  49. "@babel/core": "7.18.13",
  50. "@babel/preset-env": "7.18.10",
  51. "@babel/preset-typescript": "7.18.6",
  52. "@babel/register": "7.18.9",
  53. "@semantic-release/changelog": "6.0.1",
  54. "@semantic-release/git": "10.0.1",
  55. "@types/jest": "29.0.0",
  56. "@types/markdown-it": "12.2.3",
  57. "@types/prismjs": "1.26.0",
  58. "@typescript-eslint/eslint-plugin": "5.36.0",
  59. "@typescript-eslint/parser": "5.36.0",
  60. "babel-plugin-add-module-exports": "1.0.4",
  61. "eslint": "8.23.0",
  62. "jest": "29.0.1",
  63. "markdown-it": "13.0.1",
  64. "markdown-it-attrs": "4.1.4",
  65. "npm-run-all": "4.1.5",
  66. "semantic-release": "19.0.5",
  67. "typescript": "4.8.2"
  68. }
  69. }