forked from bnb-chain/javascript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.28 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
{
"name": "@benice/javascript-sdk",
"version": "2.7.1",
"license": "Apache-2.0",
"main": "lib/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"test:ledger": "qunit --require babel-polyfill tests-ledger/tests.js",
"test:ledger:browser": "./tests-ledger/run-browser-tests.sh",
"build": "rm -rf lib && npx babel src -d lib",
"build:docs": "npx jsdoc-to-markdown -f src/**/*.js > docs/jsdoc.md",
"prepublishOnly": "npm run build",
"lint": "eslint --fix src __tests__"
},
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^4.33.3",
"@ledgerhq/hw-transport-u2f": "^4.32.0",
"@ledgerhq/hw-transport-web-ble": "^4.32.0",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"base32-encode": "^1.1.0",
"bech32": "^1.1.3",
"big.js": "^5.2.2",
"bip32": "^1.0.2",
"bip39": "^2.5.0",
"bn.js": "^4.11.8",
"crypto-browserify": "^3.12.0",
"crypto-js": "^3.1.9-1",
"lodash": "^4.17.11",
"safe-buffer": "^5.1.2",
"secure-random": "^1.1.1",
"tiny-secp256k1": "^1.0.1",
"uuid": "^3.3.2",
"varstruct": "^6.1.2"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/preset-env": "^7.1.5",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-preset-stage-2": "^6.24.1",
"browserify": "^16.2.3",
"buffer": "^5.2.1",
"cross-env": "^5.2.0",
"eslint": "^5.11.1",
"http-server": "^0.11.1",
"jest": "^23.6.0",
"jsdoc-to-markdown": "^4.0.1",
"qunit": "^2.9.1"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-async-to-generator"
]
},
"files": [
"lib/*"
],
"description": "The Binance Chain JavaScript SDK allows browsers and node.js clients to interact with Binance Chain. It includes the following core components:",
"directories": {
"doc": "docs",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/benice-tools/javascript-sdk.git"
},
"author": "Benice",
"bugs": {
"url": "https://github.com/benice-tools/javascript-sdk/issues"
},
"homepage": "https://github.com/benice-tools/javascript-sdk#readme"
}