{
  "name": "@boltz/bolt11",
  "version": "1.2.7",
  "description": "A library for encoding and decoding lightning network payment requests as defined in [BOLT #11](https://github.com/lightningnetwork/lightning-rfc/blob/master/11-payment-encoding.md).",
  "main": "payreq.js",
  "types": "payreq.d.ts",
  "scripts": {
    "coverage-report": "nyc report --reporter=lcov",
    "coverage": "nyc --check-coverage --statements 100 --branches 100 --functions 100 --lines 100 npm run unit",
    "standard": "standard",
    "test": "npm run standard && npm run coverage",
    "unit": "tape test/*.js"
  },
  "devDependencies": {
    "nyc": "^13.0.0",
    "standard": "*",
    "tap-dot": "*",
    "tape": "^4.8.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/BoltzExchange/bolt11.git"
  },
  "keywords": [
    "invoice",
    "payment",
    "request",
    "lightning",
    "network",
    "bolt11",
    "bech32"
  ],
  "author": "Jonathan Underwood",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/BoltzExchange/bolt11/issues"
  },
  "homepage": "https://github.com/BoltzExchange/bolt11#readme",
  "dependencies": {
    "@types/bn.js": "^4.11.3",
    "bech32": "^1.1.2",
    "bitcoinjs-lib": "^3.3.1",
    "bn.js": "^4.11.8",
    "boltz-core": "0.0.10",
    "create-hash": "^1.2.0",
    "lodash": "^4.17.11",
    "safe-buffer": "^5.1.1",
    "secp256k1": "^3.4.0"
  }
}
