package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "he",
  3. "version": "1.2.0",
  4. "description": "A robust HTML entities encoder/decoder with full Unicode support.",
  5. "homepage": "https://mths.be/he",
  6. "main": "he.js",
  7. "bin": "bin/he",
  8. "keywords": [
  9. "string",
  10. "entities",
  11. "entity",
  12. "html",
  13. "encode",
  14. "decode",
  15. "unicode"
  16. ],
  17. "license": "MIT",
  18. "author": {
  19. "name": "Mathias Bynens",
  20. "url": "https://mathiasbynens.be/"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/mathiasbynens/he.git"
  25. },
  26. "bugs": "https://github.com/mathiasbynens/he/issues",
  27. "files": [
  28. "LICENSE-MIT.txt",
  29. "he.js",
  30. "bin/",
  31. "man/"
  32. ],
  33. "directories": {
  34. "bin": "bin",
  35. "man": "man",
  36. "test": "tests"
  37. },
  38. "scripts": {
  39. "test": "node tests/tests.js",
  40. "build": "grunt build"
  41. },
  42. "devDependencies": {
  43. "codecov.io": "^0.1.6",
  44. "grunt": "^0.4.5",
  45. "grunt-cli": "^1.3.1",
  46. "grunt-shell": "^1.1.1",
  47. "grunt-template": "^0.2.3",
  48. "istanbul": "^0.4.2",
  49. "jsesc": "^1.0.0",
  50. "lodash": "^4.8.2",
  51. "qunit-extras": "^1.4.5",
  52. "qunitjs": "~1.11.0",
  53. "regenerate": "^1.2.1",
  54. "regexgen": "^1.3.0",
  55. "requirejs": "^2.1.22",
  56. "sort-object": "^3.0.2"
  57. }
  58. }