package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@xtuc/ieee754",
  3. "description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object",
  4. "version": "1.2.0",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "http://feross.org"
  9. },
  10. "contributors": [
  11. "Romain Beauxis <toots@rastageeks.org>"
  12. ],
  13. "devDependencies": {
  14. "airtap": "0.0.7",
  15. "standard": "*",
  16. "tape": "^4.0.0",
  17. "@babel/cli": "^7.0.0-beta.54",
  18. "@babel/core": "^7.0.0-beta.54",
  19. "@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.54"
  20. },
  21. "keywords": [
  22. "IEEE 754",
  23. "buffer",
  24. "convert",
  25. "floating point",
  26. "ieee754"
  27. ],
  28. "license": "BSD-3-Clause",
  29. "main": "dist/index.cjs.js",
  30. "module": "index.js",
  31. "repository": {
  32. "type": "git",
  33. "url": "git://github.com/feross/ieee754.git"
  34. },
  35. "scripts": {
  36. "test": "standard && npm run test-node && npm run test-browser",
  37. "test-browser": "airtap -- test/*.js",
  38. "test-browser-local": "airtap --local -- test/*.js",
  39. "test-node": "tape test/*.js"
  40. },
  41. "prepublish": "babel --plugins @babel/plugin-transform-modules-commonjs index.js -o dist/index.cjs.js"
  42. }