UNPKG

2.61 kBJSONView Raw
1{
2 "name": "@faast/tron-payments",
3 "version": "0.19.10",
4 "description": "Library to assist in processing tron payments, such as deriving addresses and sweeping funds",
5 "main": "dist/index.cjs.js",
6 "module": "dist/index.es.js",
7 "browser": "dist/index.umd.js",
8 "types": "dist/lib/index.d.ts",
9 "esnext": "dist/lib/index.js",
10 "repository": "https://github.com/go-faast/coin-payments/tree/master/packages/tron-payments",
11 "homepage": "https://github.com/go-faast/coin-payments/tree/master/packages/tron-payments#readme",
12 "bugs": {
13 "url": "https://github.com/go-faast/coin-payments/issues"
14 },
15 "keywords": [
16 "coin",
17 "payments",
18 "crypto",
19 "tron",
20 "bip44",
21 "trx",
22 "faast",
23 "bitaccess"
24 ],
25 "contributors": [
26 "Moe Adham <moe@bitaccess.ca>",
27 "Dylan Seago <dylan@bitaccess.ca>"
28 ],
29 "license": "MIT",
30 "files": [
31 "dist/",
32 "src/"
33 ],
34 "engines": {
35 "node": ">=8.0.0"
36 },
37 "scripts": {
38 "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
39 "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
40 "docs": "bin/docs.sh",
41 "prebuild": "rimraf dist && rimraf docs",
42 "build": "bin/build.sh",
43 "start": "rollup -c rollup.config.js -w",
44 "test": "jest --runInBand --detectOpenHandles --bail",
45 "report-coverage": "cat ./coverage/lcov.info | coveralls",
46 "version": "npm run build && git add -Af dist docs"
47 },
48 "dependencies": {
49 "@faast/payments-common": "^0.19.10",
50 "@faast/ts-common": "^0.6.0",
51 "bignumber.js": "^9.0.0",
52 "bip32": "^2.0.5",
53 "elliptic": "^6.4.1",
54 "io-ts": "^1.10.4",
55 "js-sha3": "^0.8.0",
56 "jssha": "^2.3.1",
57 "lodash": "^4.17.15",
58 "tronweb": "^2.5.0"
59 },
60 "devDependencies": {
61 "@faast/ts-config": "^1.3.5",
62 "@types/elliptic": "^6.4.10",
63 "@types/jest": "^24.0.21",
64 "@types/jssha": "^2.0.0",
65 "@types/lodash": "^4.14.123",
66 "@types/node": "^10.17.3",
67 "coveralls": "^3.0.2",
68 "jest": "^24.9.0",
69 "jest-circus": "^24.9.0",
70 "jest-config": "^24.9.0",
71 "lint-staged": "^8.0.0",
72 "node-fetch": "^2.6.0",
73 "prettier": "^1.14.3",
74 "rimraf": "^2.6.2",
75 "rollup": "^1.26.3",
76 "rollup-plugin-commonjs": "^10.1.0",
77 "rollup-plugin-json": "^3.1.0",
78 "rollup-plugin-node-resolve": "^4.2.4",
79 "rollup-plugin-sourcemaps": "^0.4.2",
80 "rollup-plugin-typescript2": "^0.24.3",
81 "ts-jest": "^24.1.0",
82 "ts-node": "^8.4.1",
83 "tslint": "^5.20.0",
84 "typedoc": "^0.15.0",
85 "typescript": "^3.7.2"
86 },
87 "gitHead": "498559940c7dd65761c90915e3222774d7698231"
88}