package.json 995 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "jsesc",
  3. "version": "1.3.0",
  4. "description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.",
  5. "homepage": "https://mths.be/jsesc",
  6. "main": "jsesc.js",
  7. "bin": "bin/jsesc",
  8. "man": "man/jsesc.1",
  9. "keywords": [
  10. "string",
  11. "escape",
  12. "javascript",
  13. "tool"
  14. ],
  15. "license": "MIT",
  16. "author": {
  17. "name": "Mathias Bynens",
  18. "url": "https://mathiasbynens.be/"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/mathiasbynens/jsesc.git"
  23. },
  24. "bugs": "https://github.com/mathiasbynens/jsesc/issues",
  25. "files": [
  26. "LICENSE-MIT.txt",
  27. "jsesc.js",
  28. "bin/",
  29. "man/"
  30. ],
  31. "scripts": {
  32. "test": "node tests/tests.js",
  33. "build": "grunt template"
  34. },
  35. "devDependencies": {
  36. "coveralls": "^2.11.6",
  37. "grunt": "^0.4.5",
  38. "grunt-shell": "^1.1.2",
  39. "grunt-template": "^0.2.3",
  40. "istanbul": "^0.4.2",
  41. "qunit-extras": "^1.4.5",
  42. "qunitjs": "~1.11.0",
  43. "regenerate": "^1.2.1",
  44. "requirejs": "^2.1.22"
  45. }
  46. }