@faast/tron-payments
Version:
Library to assist in processing tron payments, such as deriving addresses and sweeping funds
99 lines (98 loc) • 2.76 kB
JSON
{
"name": "@faast/tron-payments",
"version": "0.10.1",
"description": "Library to assist in processing tron payments, such as deriving addresses and sweeping funds",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"types": "dist/lib/index.d.ts",
"esnext": "dist/lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/go-faast/tron-payments.git"
},
"keywords": [
"tron",
"bitcoin",
"bip44",
"payments",
"trx",
"faast",
"bitaccess"
],
"contributors": [
"Moe Adham <moe@bitaccess.ca>",
"Dylan Seago <dylan@bitaccess.ca>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/go-faast/tron-payments/issues"
},
"homepage": "https://github.com/go-faast/tron-payments#readme",
"files": [
"dist/",
"src/"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"docs": "bin/docs.sh",
"prebuild": "rimraf dist",
"build": "bin/build.sh",
"start": "rollup -c rollup.config.js -w",
"pretest": "npm run lint",
"test": "jest --runInBand --detectOpenHandles --bail",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"precommit": "lint-staged",
"preversion": "bin/preversion.sh",
"version": "npm run build && git add -Af dist docs",
"postversion": "git push && git push --tags",
"release": "npm publish --access=public"
},
"peerDependencies": {
"io-ts": "^1.8.5"
},
"dependencies": {
"@faast/payments-common": "^0.10.0",
"@faast/ts-common": "^0.3.1",
"bignumber.js": "^9.0.0",
"bip32": "^2.0.4",
"elliptic": "^6.4.0",
"js-sha3": "^0.8.0",
"jssha": "^2.3.1",
"lodash": "^4.17.15",
"tronweb": "^2.5.0"
},
"devDependencies": {
"@faast/ts-config": "^1.3.1",
"@types/elliptic": "^6.4.6",
"@types/jest": "^23.3.2",
"@types/jssha": "^2.0.0",
"@types/lodash": "^4.14.123",
"@types/node": "^10.11.0",
"coveralls": "^3.0.2",
"husky": "^2.1.0",
"io-ts": "^1.8.5",
"jest": "^23.6.0",
"jest-config": "^23.6.0",
"lint-staged": "^8.0.0",
"node-fetch": "^2.4.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rollup": "^0.67.0",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.18.0",
"ts-jest": "^23.10.2",
"ts-lint": "^4.5.1",
"ts-node": "^7.0.1",
"tslint": "^5.16.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333"
}
}