package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "jsesc",
  3. "version": "2.5.2",
  4. "description": "Given some data, jsesc returns the shortest possible stringified & ASCII-safe representation of that data.",
  5. "homepage": "https://mths.be/jsesc",
  6. "engines": {
  7. "node": ">=4"
  8. },
  9. "main": "jsesc.js",
  10. "bin": "bin/jsesc",
  11. "man": "man/jsesc.1",
  12. "keywords": [
  13. "buffer",
  14. "escape",
  15. "javascript",
  16. "json",
  17. "map",
  18. "set",
  19. "string",
  20. "stringify",
  21. "tool"
  22. ],
  23. "license": "MIT",
  24. "author": {
  25. "name": "Mathias Bynens",
  26. "url": "https://mathiasbynens.be/"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/mathiasbynens/jsesc.git"
  31. },
  32. "bugs": "https://github.com/mathiasbynens/jsesc/issues",
  33. "files": [
  34. "LICENSE-MIT.txt",
  35. "jsesc.js",
  36. "bin/",
  37. "man/"
  38. ],
  39. "scripts": {
  40. "build": "grunt template",
  41. "coveralls": "istanbul cover --verbose --dir 'coverage' 'tests/tests.js' && coveralls < coverage/lcov.info'",
  42. "cover": "istanbul cover --report 'html' --verbose --dir 'coverage' 'tests/tests.js'",
  43. "test": "mocha tests"
  44. },
  45. "devDependencies": {
  46. "coveralls": "^2.11.6",
  47. "grunt": "^0.4.5",
  48. "grunt-template": "^0.2.3",
  49. "istanbul": "^0.4.2",
  50. "mocha": "*",
  51. "regenerate": "^1.3.0",
  52. "requirejs": "^2.1.22"
  53. }
  54. }