package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "unescape",
  3. "description": "Convert HTML entities to HTML characters, e.g. `>` converts to `>`.",
  4. "version": "1.0.1",
  5. "homepage": "https://github.com/jonschlinkert/unescape",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/unescape",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/unescape/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "devDependencies": {
  23. "gulp-format-md": "^0.1.11",
  24. "mocha": "^3.2.0"
  25. },
  26. "keywords": [
  27. "char",
  28. "character",
  29. "characters",
  30. "entities",
  31. "entity",
  32. "escape",
  33. "html",
  34. "string",
  35. "un-escape",
  36. "unescape",
  37. "xml"
  38. ],
  39. "verb": {
  40. "toc": false,
  41. "layout": "default",
  42. "tasks": [
  43. "readme"
  44. ],
  45. "plugins": [
  46. "gulp-format-md"
  47. ],
  48. "lint": {
  49. "reflinks": true
  50. },
  51. "related": {
  52. "list": [
  53. "html-elements",
  54. "html-tag",
  55. "html-toc",
  56. "is-self-closing"
  57. ]
  58. },
  59. "reflinks": [
  60. "ent",
  61. "html-entities"
  62. ]
  63. },
  64. "dependencies": {
  65. "extend-shallow": "^2.0.1"
  66. }
  67. }