package.json 732 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "sparse-bitfield",
  3. "version": "3.0.3",
  4. "description": "Bitfield that allocates a series of small buffers to support sparse bits without allocating a massive buffer",
  5. "main": "index.js",
  6. "dependencies": {
  7. "memory-pager": "^1.0.2"
  8. },
  9. "devDependencies": {
  10. "buffer-alloc": "^1.1.0",
  11. "standard": "^9.0.0",
  12. "tape": "^4.6.3"
  13. },
  14. "scripts": {
  15. "test": "standard && tape test.js"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/mafintosh/sparse-bitfield.git"
  20. },
  21. "author": "Mathias Buus (@mafintosh)",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/mafintosh/sparse-bitfield/issues"
  25. },
  26. "homepage": "https://github.com/mafintosh/sparse-bitfield"
  27. }