package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "ieee754",
  3. "description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object",
  4. "version": "1.2.1",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "https://feross.org"
  9. },
  10. "contributors": [
  11. "Romain Beauxis <toots@rastageeks.org>"
  12. ],
  13. "devDependencies": {
  14. "airtap": "^3.0.0",
  15. "standard": "*",
  16. "tape": "^5.0.1"
  17. },
  18. "keywords": [
  19. "IEEE 754",
  20. "buffer",
  21. "convert",
  22. "floating point",
  23. "ieee754"
  24. ],
  25. "license": "BSD-3-Clause",
  26. "main": "index.js",
  27. "types": "index.d.ts",
  28. "repository": {
  29. "type": "git",
  30. "url": "git://github.com/feross/ieee754.git"
  31. },
  32. "scripts": {
  33. "test": "standard && npm run test-node && npm run test-browser",
  34. "test-browser": "airtap -- test/*.js",
  35. "test-browser-local": "airtap --local -- test/*.js",
  36. "test-node": "tape test/*.js"
  37. },
  38. "funding": [
  39. {
  40. "type": "github",
  41. "url": "https://github.com/sponsors/feross"
  42. },
  43. {
  44. "type": "patreon",
  45. "url": "https://www.patreon.com/feross"
  46. },
  47. {
  48. "type": "consulting",
  49. "url": "https://feross.org/support"
  50. }
  51. ]
  52. }