package.json 645 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "htmlescape",
  3. "version": "1.1.1",
  4. "description": "Properly escape JSON for usage as an object literal inside of a `<script>` tag",
  5. "keywords": [
  6. "escape",
  7. "encoding",
  8. "html",
  9. "json",
  10. "template"
  11. ],
  12. "homepage": "https://github.com/zertosh/htmlescape",
  13. "license": "MIT",
  14. "author": "Andres Suarez <zertosh@gmail.com>",
  15. "main": "htmlescape.js",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/zertosh/htmlescape.git"
  19. },
  20. "scripts": {
  21. "test": "tape test/*.js"
  22. },
  23. "dependencies": {},
  24. "devDependencies": {
  25. "tape": "^3.0.0"
  26. },
  27. "engines": {
  28. "node": ">=0.10"
  29. }
  30. }