This repository has been archived by the owner on Jan 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
98 lines (98 loc) · 2.7 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@faast/tron-payments",
"version": "0.17.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 <[email protected]>",
"Dylan Seago <[email protected]>"
],
"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.17.0",
"@faast/ts-common": "^0.5.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"
}
}