package.json 909 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "string.fromcodepoint",
  3. "version": "0.2.1",
  4. "description": "A robust & optimized `String.fromCodePoint` polyfill, based on the ECMAScript 6 specification.",
  5. "homepage": "http://mths.be/fromcodepoint",
  6. "main": "fromcodepoint.js",
  7. "keywords": [
  8. "string",
  9. "unicode",
  10. "es6",
  11. "ecmascript",
  12. "polyfill"
  13. ],
  14. "licenses": [
  15. {
  16. "type": "MIT",
  17. "url": "http://mths.be/mit"
  18. }
  19. ],
  20. "author": {
  21. "name": "Mathias Bynens",
  22. "url": "http://mathiasbynens.be/"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/mathiasbynens/String.fromCodePoint.git"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/mathiasbynens/String.fromCodePoint/issues"
  30. },
  31. "files": [
  32. "LICENSE-MIT.txt",
  33. "fromcodepoint.js"
  34. ],
  35. "directories": {
  36. "test": "tests"
  37. },
  38. "scripts": {
  39. "test": "node tests/tests.js",
  40. "cover": "istanbul cover --report html --verbose --dir coverage tests/tests.js"
  41. }
  42. }