{
  "name": "bytewriter",
  "version": "1.2.0",
  "description": "Simple binary byte stream implementation with support for reading/writing numbers, strings, and varints (zigzag or unsigned) in both little and big endian encoding",
  "main": "src/index.js",
  "scripts": {
    "mocha": "mocha --reporter spec --exit",
    "test": "npm run mocha",
    "pretest": "npm run lint",
    "lint": "standard",
    "fix": "standard --fix"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/extremeheat/node-binarystream.git"
  },
  "keywords": [
    "binary stream",
    "byte stream"
  ],
  "author": "extremeheat",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/extremeheat/node-binarystream/issues"
  },
  "homepage": "https://github.com/extremeheat/node-binarystream#readme",
  "devDependencies": {
    "bytewriter": "file:.",
    "standard": "^17.0.0",
    "mocha": "^10.0.0"
  }
}
