UNPKG

minimal-slp-wallet

Version:
91 lines (90 loc) 2.4 kB
{ "name": "minimal-slp-wallet", "version": "5.13.2", "description": "A minimalist Bitcoin Cash (BCH) wallet npm library, for use in a web apps.", "main": "./index.js", "module": "./dist/minimal-slp-wallet.min.js", "scripts": { "start": "node index.js", "test": "TEST=unit nyc mocha test/unit/", "test:integration": "mocha --timeout 35000 test/integration/", "test:temp": "mocha --timeout 25000 -g '#UTXOs' test/integration/", "lint": "standard --env mocha --fix", "docs": "./node_modules/.bin/apidoc -i lib/ -o docs", "coverage": "nyc report --reporter=text-lcov | coveralls", "coverage:report": "nyc --reporter=html mocha test/unit/ --exit", "build": "browserify index.js -p tinyify --s SlpWallet -o dist/minimal-slp-wallet.min.js" }, "keywords": [ "bitcoin", "bitcoin cash", "wallet", "javascript", "cryptocurrency", "react", "front end", "client", "apidoc", "slp", "tokens" ], "author": "Chris Troutner <chris.troutner@gmail.com>", "license": "MIT", "apidoc": { "title": "minimal-slp-wallet", "url": "localhost:5000" }, "repository": "Permissionless-Software-Foundation/minimal-slp-wallet", "dependencies": { "@chris.troutner/retry-queue-commonjs": "1.0.8", "@psf/bch-js": "6.8.0", "apidoc": "0.51.0", "bch-consumer": "1.6.2", "bch-donation": "1.1.2", "crypto-js": "4.0.0" }, "devDependencies": { "browserify": "17.0.0", "chai": "4.2.0", "coveralls": "3.1.0", "eslint": "7.17.0", "eslint-config-prettier": "7.1.0", "eslint-config-standard": "16.0.2", "eslint-plugin-node": "11.1.0", "eslint-plugin-prettier": "3.3.1", "eslint-plugin-standard": "4.0.1", "husky": "4.3.8", "lodash.clonedeep": "4.5.0", "mocha": "9.2.1", "nyc": "15.1.0", "semantic-release": "19.0.3", "sinon": "9.2.0", "standard": "16.0.4", "tinyify": "3.0.0" }, "release": { "publish": [ { "path": "@semantic-release/npm", "npmPublish": true } ] }, "husky": { "hooks": { "pre-commit": "npm run lint && npm run build" } }, "exports": { ".": { "import": { "browser": "./dist/minimal-slp-wallet.min.js", "node": "./index.js", "default": "./index.js" }, "require": { "default": "./index.js" } } } }