package.json 831 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name" : "ent",
  3. "description" : "Encode and decode HTML entities",
  4. "version" : "2.2.0",
  5. "repository" : "https://github.com/substack/node-ent.git",
  6. "author" : "James Halliday <mail@substack.net> (http://substack.net)",
  7. "main" : "./index.js",
  8. "keywords" : [
  9. "entities",
  10. "entitify",
  11. "entity",
  12. "html",
  13. "encode",
  14. "decode"
  15. ],
  16. "license" : "MIT",
  17. "scripts" : {
  18. "test" : "tape test/*.js",
  19. "prepublish" : "node build/index.js"
  20. },
  21. "testling" : {
  22. "files" : "test/*.js",
  23. "browsers" : [
  24. "ie/6..latest",
  25. "ff/3.5", "ff/latest",
  26. "chrome/10", "chrome/latest",
  27. "safari/latest",
  28. "opera/latest"
  29. ]
  30. },
  31. "devDependencies" : {
  32. "tape" : "~2.3.2"
  33. }
  34. }