package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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": "9.11.0",
  10. "author": {
  11. "name": "Ivan Sagalaev",
  12. "email": "maniac@softwaremaniacs.org"
  13. },
  14. "contributors": [],
  15. "bugs": {
  16. "url": "https://github.com/isagalaev/highlight.js/issues"
  17. },
  18. "license": "BSD-3-Clause",
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/isagalaev/highlight.js.git"
  22. },
  23. "main": "./lib/index.js",
  24. "scripts": {
  25. "test": "./node_modules/.bin/mocha test/",
  26. "test-browser": "./node_modules/.bin/mocha test/browser/"
  27. },
  28. "engines": {
  29. "node": "*"
  30. },
  31. "devDependencies": {
  32. "bluebird": "^3.0.1",
  33. "commander": "^2.3.0",
  34. "del": "^2.0.2",
  35. "gear": "^0.9.4",
  36. "gear-lib": "^0.9.2",
  37. "glob": "^7.0.3",
  38. "jsdom": "^9.2.1",
  39. "lodash": "^4.0.0",
  40. "mocha": "^2.0.1",
  41. "should": "^9.0.2",
  42. "tiny-worker": "^1.1.1",
  43. "js-beautify": "^1.5.10"
  44. }
  45. }