package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "punycode",
  3. "version": "2.1.1",
  4. "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
  5. "homepage": "https://mths.be/punycode",
  6. "main": "punycode.js",
  7. "jsnext:main": "punycode.es6.js",
  8. "module": "punycode.es6.js",
  9. "engines": {
  10. "node": ">=6"
  11. },
  12. "keywords": [
  13. "punycode",
  14. "unicode",
  15. "idn",
  16. "idna",
  17. "dns",
  18. "url",
  19. "domain"
  20. ],
  21. "license": "MIT",
  22. "author": {
  23. "name": "Mathias Bynens",
  24. "url": "https://mathiasbynens.be/"
  25. },
  26. "contributors": [
  27. {
  28. "name": "Mathias Bynens",
  29. "url": "https://mathiasbynens.be/"
  30. }
  31. ],
  32. "repository": {
  33. "type": "git",
  34. "url": "https://github.com/bestiejs/punycode.js.git"
  35. },
  36. "bugs": "https://github.com/bestiejs/punycode.js/issues",
  37. "files": [
  38. "LICENSE-MIT.txt",
  39. "punycode.js",
  40. "punycode.es6.js"
  41. ],
  42. "scripts": {
  43. "test": "mocha tests",
  44. "prepublish": "node scripts/prepublish.js"
  45. },
  46. "devDependencies": {
  47. "codecov": "^1.0.1",
  48. "istanbul": "^0.4.1",
  49. "mocha": "^2.5.3"
  50. },
  51. "jspm": {
  52. "map": {
  53. "./punycode.js": {
  54. "node": "@node/punycode"
  55. }
  56. }
  57. }
  58. }