package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "highlight.js",
  3. "description": "Syntax highlighting with language autodetection.",
  4. "keywords": [
  5. "highlight",
  6. "syntax"
  7. ],
  8. "homepage": "https://highlightjs.org/",
  9. "version": "10.7.3",
  10. "author": {
  11. "name": "Ivan Sagalaev",
  12. "email": "maniac@softwaremaniacs.org"
  13. },
  14. "contributors": [
  15. "Josh Goebel <hello@joshgoebel.com>",
  16. "Egor Rogov <e.rogov@postgrespro.ru>",
  17. "Vladimir Jimenez <me@allejo.io>",
  18. "Ivan Sagalaev <maniac@softwaremaniacs.org>",
  19. "Jeremy Hull <sourdrums@gmail.com>",
  20. "Oleg Efimov <efimovov@gmail.com>",
  21. "Gidi Meir Morris <gidi@gidi.io>",
  22. "Jan T. Sott <git@idleberg.com>",
  23. "Li Xuanji <xuanji@gmail.com>",
  24. "Marcos Cáceres <marcos@marcosc.com>",
  25. "Sang Dang <sang.dang@polku.io>"
  26. ],
  27. "bugs": {
  28. "url": "https://github.com/highlightjs/highlight.js/issues"
  29. },
  30. "license": "BSD-3-Clause",
  31. "repository": {
  32. "type": "git",
  33. "url": "git://github.com/highlightjs/highlight.js.git"
  34. },
  35. "main": "./lib/index.js",
  36. "types": "./types/index.d.ts",
  37. "scripts": {
  38. "mocha": "mocha",
  39. "lint": "eslint src/*.js src/lib/*.js src/plugins/*.js demo/*.js",
  40. "lint-languages": "eslint --no-eslintrc -c .eslintrc.lang.js src/languages/**/*.js",
  41. "build_and_test": "npm run build && npm run test",
  42. "build": "node ./tools/build.js -t node",
  43. "build-cdn": "node ./tools/build.js -t cdn",
  44. "build-browser": "node ./tools/build.js -t browser :common",
  45. "test": "mocha test",
  46. "test-markup": "mocha test/markup",
  47. "test-detect": "mocha test/detect",
  48. "test-browser": "mocha test/browser",
  49. "test-parser": "mocha test/parser"
  50. },
  51. "engines": {
  52. "node": "*"
  53. },
  54. "devDependencies": {
  55. "@rollup/plugin-commonjs": "^17.0.0",
  56. "@rollup/plugin-json": "^4.1.0",
  57. "@rollup/plugin-node-resolve": "^11.1.0",
  58. "@types/mocha": "^8.2.2",
  59. "@typescript-eslint/eslint-plugin": "^4.6.1",
  60. "@typescript-eslint/parser": "^4.6.1",
  61. "clean-css": "^5.0.1",
  62. "cli-table": "^0.3.1",
  63. "colors": "^1.1.2",
  64. "commander": "^7.0.0",
  65. "deep-freeze-es6": "^1.4.1",
  66. "del": "^6.0.0",
  67. "dependency-resolver": "^2.0.1",
  68. "eslint": "^7.12.1",
  69. "eslint-config-standard": "^16.0.1",
  70. "eslint-plugin-import": "^2.22.1",
  71. "eslint-plugin-node": "^11.1.0",
  72. "eslint-plugin-promise": "^4.2.1",
  73. "glob": "^7.1.6",
  74. "glob-promise": "^4.0.1",
  75. "handlebars": "^4.7.6",
  76. "jsdom": "^16.4.0",
  77. "lodash": "^4.17.20",
  78. "mocha": "^8.2.1",
  79. "refa": "^0.4.1",
  80. "rollup": "^2.33.1",
  81. "should": "^13.2.3",
  82. "terser": "^5.3.8",
  83. "tiny-worker": "^2.3.0",
  84. "typescript": "^4.0.5"
  85. }
  86. }