package.json 875 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "ordered-binary",
  3. "author": "Kris Zyp",
  4. "version": "1.5.3",
  5. "description": "Conversion of JavaScript primitives to and from Buffer with binary order matching natural primitive order",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "http://github.com/kriszyp/ordered-binary"
  10. },
  11. "scripts": {
  12. "build": "rollup -c",
  13. "prepare": "rollup -c",
  14. "test": "mocha tests -u tdd"
  15. },
  16. "type": "module",
  17. "main": "dist/index.cjs",
  18. "module": "index.js",
  19. "exports": {
  20. ".": {
  21. "require": "./dist/index.cjs",
  22. "import": "./index.js"
  23. },
  24. "./index.js": {
  25. "require": "./dist/index.cjs",
  26. "import": "./index.js"
  27. }
  28. },
  29. "typings": "./index.d.ts",
  30. "optionalDependencies": {},
  31. "devDependencies": {
  32. "@types/node": "latest",
  33. "chai": "^4",
  34. "mocha": "^9.2.0",
  35. "rollup": "^2.61.1"
  36. }
  37. }