{ "name": "@psf/bch-js", "version": "7.0.0", "type": "module", "description": "A JavaScript library for working with Bitcoin Cash and SLP Tokens", "author": "Chris Troutner ", "contributors": [ "Gabriel Cardona ", "Stoyan Zhekov " ], "main": "src/bch-js.js", "scripts": { "test": "export RESTURL=http://localhost:5942/v6 && c8 mocha --trace-warnings --unhandled-rejections=strict --timeout 30000 test/unit/", "test:custom": "export RESTURL=http://localhost:5942/v6 && c8 mocha --trace-warnings --unhandled-rejections=strict --timeout 60000 ${MOCHA_GREP:+--grep $MOCHA_GREP} test/unit/", "test:integration": "npm run test:integration:local:noauth", "test:integration:fullstack:free": "export RESTURL=https://bch.fullstack.cash/v6 && mocha --timeout 60000 test/integration/", "test:integration:fullstack:x402": "export RESTURL=https://x402-bch.fullstack.cash/v6 && export BCHJSWIF=L1eYaneXDDXy8VDig4Arwe8wYHbhtsA5wuQvwsKwhaYeneoZuKG4 && mocha --timeout 120000 test/integration/", "test:integration:local:noauth": "export RESTURL=http://localhost:5942/v6 && mocha --timeout 30000 test/integration/", "test:integration:local:auth": "export RESTURL=http://192.168.1.115:5942/v6 && export BCHJSBEARERTOKEN=temp01 && mocha --timeout 30000 test/integration/", "test:integration:local:x402": "export RESTURL=http://localhost:5942/v6 && export BCHJSWIF=L1eYaneXDDXy8VDig4Arwe8wYHbhtsA5wuQvwsKwhaYeneoZuKG4 && mocha --timeout 1200000 test/integration/", "test:integration:decatur": "export RESTURL=http://192.168.2.127:5942/v6 && mocha --timeout 30000 test/integration/", "coverage": "nyc --reporter=html mocha --timeout 25000 test/unit/", "docs": "./node_modules/.bin/apidoc -i src/ -o docs && ./fix-docs-contrast.sh", "lint": "standard --env mocha --fix" }, "license": "MIT", "homepage": "https://github.com/Permissionless-Software-Foundation/bch-js", "repository": { "type": "git", "url": "git+https://github.com/Permissionless-Software-Foundation/bch-js.git" }, "dependencies": { "@chris.troutner/bip32-utils": "1.0.5", "@psf/bip21": "2.0.1", "@psf/bitcoincashjs-lib": "4.0.3", "@psf/coininfo": "4.0.0", "axios": "1.13.2", "bc-bip68": "1.0.5", "bchaddrjs-slp": "0.2.14", "bigi": "1.4.2", "bignumber.js": "9.3.1", "bip-schnorr": "0.6.7", "bip38": "3.1.1", "bip39": "3.1.0", "bip66": "1.1.5", "bitcoinjs-message": "2.2.0", "bs58": "4.0.1", "ecashaddrjs": "1.0.7", "ini": "6.0.0", "randombytes": "2.1.0", "safe-buffer": "5.2.1", "satoshi-bitcoin": "1.0.5", "slp-mdm": "0.0.7", "slp-parser": "0.0.4", "wif": "2.0.6", "x402-bch-axios": "2.2.1" }, "devDependencies": { "apidoc": "1.2.0", "assert": "2.1.0", "c8": "10.1.3", "chai": "4.1.2", "husky": "4.3.8", "lodash.clonedeep": "4.5.0", "mocha": "11.7.5", "nyc": "15.1.0", "semantic-release": "24.2.9", "sinon": "9.2.2", "standard": "17.1.2" }, "apidoc": { "title": "bch-js", "url": "bchjs." }, "husky": { "hooks": { "pre-commit": "npm run lint" } }, "standard": { "parserOptions": { "ecmaVersion": "latest" } } }