package.json 742 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "leb128",
  3. "version": "0.0.4",
  4. "description": "LEB128 encoding and decoding for signed and unsinged intergers",
  5. "main": "index.js",
  6. "scripts": {
  7. "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
  8. "coverage": "nyc npm test",
  9. "lint": "standard",
  10. "test": "node ./test/leb.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/wanderer/leb128.git"
  15. },
  16. "keywords": [
  17. "leb128"
  18. ],
  19. "author": "mjbecze <mjbecze@gmail.com>",
  20. "license": "MPL-2.0",
  21. "devDependencies": {
  22. "coveralls": "^3.0.0",
  23. "nyc": "^12.0.1",
  24. "standard": "^12.0.0",
  25. "tape": "^4.6.3"
  26. },
  27. "dependencies": {
  28. "bn.js": "^5.0.0",
  29. "buffer-pipe": "0.0.3"
  30. }
  31. }