package.json 701 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "b4a",
  3. "version": "1.6.6",
  4. "description": "Bridging the gap between buffers and typed arrays",
  5. "main": "index.js",
  6. "files": [
  7. "browser.js",
  8. "index.js",
  9. "lib"
  10. ],
  11. "browser": {
  12. "./index.js": "./browser.js"
  13. },
  14. "scripts": {
  15. "test": "standard && brittle test/*.mjs"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/holepunchto/b4a.git"
  20. },
  21. "author": "Holepunch",
  22. "license": "Apache-2.0",
  23. "bugs": {
  24. "url": "https://github.com/holepunchto/b4a/issues"
  25. },
  26. "homepage": "https://github.com/holepunchto/b4a#readme",
  27. "devDependencies": {
  28. "brittle": "^1.3.5",
  29. "nanobench": "^2.1.1",
  30. "standard": "^16.0.3"
  31. }
  32. }