Files
bch-js/package.json
T

97 lines
4.2 KiB
JSON
Raw Normal View History

2020-07-27 21:32:51 -07:00
{
2020-07-28 18:17:39 -07:00
"name": "@psf/bch-js",
2020-12-05 20:51:50 -08:00
"version": "4.0.0",
2020-07-28 18:17:39 -07:00
"description": "The FullStack.cash JavaScript library for Bitcoin Cash and SLP Tokens",
2020-07-27 21:32:51 -07:00
"author": "Chris Troutner <chris.troutner@gmail.com>",
"contributors": [
2021-05-16 14:22:33 +09:00
"Gabriel Cardona <gabriel@bitcoin.com>",
"Stoyan Zhekov <zh@zhware.net>"
2020-07-27 21:32:51 -07:00
],
"main": "src/bch-js",
"scripts": {
"test": "nyc mocha --trace-warnings --unhandled-rejections=strict --timeout 30000 test/unit/",
2020-12-08 17:42:31 -08:00
"test:integration": "npm run test:integration:bchn",
2021-05-16 14:22:33 +09:00
"test:integration:nft": "export RESTURL=https://bchn.fullstack.cash/v4/ && export IS_USING_FREE_TIER=true && mocha --timeout 30000 -g '#nft1' test/integration/chains/bchn/slp.js",
"test:integration:abc": "export RESTURL=https://abc.fullstack.cash/v4/ && export IS_USING_FREE_TIER=true && mocha --timeout 30000 test/integration/ && mocha --timeout 30000 test/integration/chains/abc/",
"test:integration:bchn": "export RESTURL=https://bchn.fullstack.cash/v4/ && export IS_USING_FREE_TIER=true && mocha --timeout 30000 test/integration/ && mocha --timeout 30000 test/integration/chains/bchn/",
"test:integration:testnet": "IS_USING_FREE_TIER=true mocha --timeout 30000 test/integration/chains/testnet/",
"test:integration:local:abc": "export RESTURL=http://localhost:3000/v4/ && mocha --timeout 30000 test/integration && mocha --timeout 30000 test/integration/chains/abc/",
"test:integration:local:bchn": "export RESTURL=http://localhost:3000/v4/ && mocha --timeout 30000 test/integration/ && mocha --timeout 30000 test/integration/chains/bchn/",
"test:integration:local:testnet": "RESTURL=http://localhost:4000/v4/ mocha --timeout 30000 test/integration/chains/testnet",
2021-02-27 08:23:07 -08:00
"test:integration:decatur:bchn": "export RESTURL=http://192.168.0.36:3000/v4/ && mocha --timeout 30000 test/integration/",
"test:integration:temp:bchn": "export RESTURL=http://157.90.174.219:3000/v4/ && mocha --timeout 30000 test/integration/",
"test:temp": "export RESTURL=http://localhost:3000/v4/ && mocha --timeout 30000 -g '#Encryption' test/integration/",
2021-03-24 07:24:08 -07:00
"test:temp2": "mocha --timeout=30000 -g '#TransactionLib' test/unit/",
"test:temp3": "export RESTURL=https://bchn.fullstack.cash/v4/ && mocha --timeout 30000 -g '#Transaction' test/integration/",
"test:temp4": "export RESTURL=http://localhost:3000/v4/ && mocha --timeout 30000 -g '#decodeOpReturn' test/integration/",
2020-07-27 21:32:51 -07:00
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "nyc --reporter=html mocha --timeout 25000 test/unit/",
2021-01-02 15:41:12 -08:00
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
"lint": "standard --env mocha --fix"
2020-07-27 21:32:51 -07:00
},
"license": "MIT",
2020-07-28 18:17:39 -07:00
"homepage": "https://github.com/Permissionless-Software-Foundation/bch-js",
2020-07-27 21:32:51 -07:00
"repository": {
"type": "git",
2020-07-28 18:17:39 -07:00
"url": "git+https://github.com/Permissionless-Software-Foundation/bch-js.git"
2020-07-27 21:32:51 -07:00
},
"dependencies": {
"@psf/bip21": "^2.0.1",
"@psf/bip32-utils": "^1.0.0",
"@psf/bitcoincash-ops": "^2.0.0",
"@psf/bitcoincashjs-lib": "^4.0.2",
"@psf/coininfo": "^4.0.0",
2020-07-27 21:32:51 -07:00
"@uppy/core": "^1.10.4",
"@uppy/tus": "^1.5.12",
2021-01-04 14:44:48 -08:00
"axios": "^0.21.1",
2020-07-27 21:32:51 -07:00
"bc-bip68": "^1.0.5",
"bchaddrjs-slp": "^0.2.5",
"bigi": "^1.4.2",
"bignumber.js": "^9.0.0",
"bip-schnorr": "^0.3.0",
"bip38": "^2.0.2",
"bip39": "^3.0.2",
"bip66": "^1.1.5",
"bitcoinjs-message": "^2.0.0",
"bs58": "^4.0.1",
"cashaddrjs": "^0.3.3",
2020-12-24 09:26:36 -08:00
"ini": "^1.3.8",
2020-07-27 21:32:51 -07:00
"randombytes": "^2.0.6",
"safe-buffer": "^5.1.2",
"satoshi-bitcoin": "^1.0.4",
"slp-mdm": "0.0.6",
"slp-parser": "0.0.4",
"wif": "^2.0.6"
},
"devDependencies": {
"apidoc": "^0.17.7",
"assert": "^2.0.0",
2020-07-27 21:32:51 -07:00
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "5.16.0",
"eslint-config-prettier": "^6.0.0",
2021-01-02 15:41:12 -08:00
"eslint-config-standard": "^14.1.0",
2020-07-27 21:32:51 -07:00
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
2021-01-02 15:41:12 -08:00
"eslint-plugin-standard": "^4.0.0",
2021-01-02 16:44:53 -08:00
"husky": "^4.3.6",
2020-12-06 15:41:39 -08:00
"lodash.clonedeep": "^4.5.0",
2020-07-27 21:32:51 -07:00
"mocha": "^6.1.4",
"node-mocks-http": "^1.7.0",
"nyc": "^14.1.0",
"prettier": "^1.18.2",
"semantic-release": "^17.3.9",
2021-01-02 15:41:12 -08:00
"sinon": "^7.3.2",
"standard": "^16.0.3"
2020-07-27 21:32:51 -07:00
},
"apidoc": {
"title": "bch-js",
"url": "bchjs."
2021-01-02 16:44:53 -08:00
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
2020-07-27 21:32:51 -07:00
}
}