package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "jsesc",
  3. "version": "0.5.0",
  4. "description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.",
  5. "homepage": "http://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. "licenses": [
  16. {
  17. "type": "MIT",
  18. "url": "http://mths.be/mit"
  19. }
  20. ],
  21. "author": {
  22. "name": "Mathias Bynens",
  23. "url": "http://mathiasbynens.be/"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/mathiasbynens/jsesc.git"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/mathiasbynens/jsesc/issues"
  31. },
  32. "files": [
  33. "LICENSE-MIT.txt",
  34. "jsesc.js",
  35. "bin/",
  36. "man/"
  37. ],
  38. "directories": {
  39. "test": "tests"
  40. },
  41. "scripts": {
  42. "test": "node tests/tests.js"
  43. },
  44. "devDependencies": {
  45. "coveralls": "^2.10.0",
  46. "grunt": "^0.4.5",
  47. "grunt-shell": "^0.7.0",
  48. "grunt-template": "^0.2.3",
  49. "istanbul": "^0.3.0",
  50. "qunit-extras": "^1.2.0",
  51. "qunitjs": "~1.11.0",
  52. "regenerate": "^0.6.2",
  53. "requirejs": "^2.1.14"
  54. }
  55. }