{
  "name": "slp-mutable-data",
  "version": "2.4.0",
  "description": "A JavaScript npm library for retrieving mutable data associated with a SLP token.",
  "main": "./index.js",
  "module": "./dist/slp-mutable-data.min.js",
  "scripts": {
    "start": "node index.js",
    "test": "npm run lint && TEST=unit nyc mocha --timeout 15000 test/unit/",
    "test:integration": "mocha --timeout 25000 test/integration/",
    "lint": "standard --env mocha --fix",
    "docs": "./node_modules/.bin/apidoc -i src/ -o docs",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "coverage:report": "nyc --reporter=html mocha --timeout 15000 test/unit/ --exit",
    "build": "browserify index.js -p tinyify --s SlpMutableData -o dist/slp-mutable-data.min.js"
  },
  "keywords": [
    "bitcoin",
    "bitcoin cash",
    "wallet",
    "javascript",
    "cryptocurrency",
    "react",
    "front end",
    "client",
    "apidoc",
    "slp",
    "tokens"
  ],
  "author": "Chris Troutner <chris.troutner@gmail.com>",
  "license": "GPL-2.0",
  "apidoc": {
    "title": "slp-mutable-data",
    "url": "localhost:5000"
  },
  "repository": "Dos-Centavos/slp-mutable-data",
  "dependencies": {
    "axios": "0.27.2",
    "p2wdb": "2.4.1"
  },
  "devDependencies": {
    "apidoc": "0.50.5",
    "browserify": "17.0.0",
    "chai": "4.2.0",
    "coveralls": "3.1.0",
    "husky": "4.3.8",
    "lodash.clonedeep": "4.5.0",
    "minimal-ecash-wallet": "1.1.6",
    "minimal-slp-wallet": "5.11.1",
    "mocha": "9.2.2",
    "nyc": "15.1.0",
    "semantic-release": "19.0.2",
    "sinon": "9.2.2",
    "standard": "17.0.0",
    "tinyify": "3.0.0",
    "web3.storage": "4.0.0"
  },
  "release": {
    "publish": [
      {
        "path": "@semantic-release/npm",
        "npmPublish": true
      }
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint && npm run build"
    }
  },
  "exports": {
    ".": {
      "import": {
        "browser": "./dist/slp-mutable-data.min.js",
        "node": "./index.js",
        "default": "./index.js"
      },
      "require": {
        "default": "./index.js"
      }
    }
  }
}
