-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "@bandprotocol/bandchain.js",
"version": "2.5.1",
"description": "Library for interacting with BandChain in browser and Node.js environments",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf coverage lib",
"tsc": "tsc -p tsconfig.json",
"prepublish": "yarn clean && yarn tsc",
"dev": "ts-node dev/node/index.ts",
"dev:watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' dev/node/index.ts",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/bandprotocol/bandchain.js"
},
"author": "Band Protocol <[email protected]> (https://github.com/bandprotocol)",
"bugs": {
"url": "https://github.com/bandprotocol/bandchain.js/issues"
},
"homepage": "https://github.com/bandprotocol/bandchain.js",
"keywords": [
"oracle",
"blockchain",
"cross-chain",
"cosmos-sdk",
"decentralization"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/ledgerhq__hw-transport-node-hid": "^4.22.2",
"@types/ledgerhq__hw-transport-webusb": "^4.70.1",
"@types/secp256k1": "^4.0.3",
"@types/w3c-web-usb": "^1.0.6",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-protoc-gen": "^0.15.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.0.5",
"@improbable-eng/grpc-web": "^0.15.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
"@ledgerhq/hw-transport-node-hid": "^6.29.3",
"@ledgerhq/hw-transport-webhid": "^6.27.13",
"@ledgerhq/hw-transport-webusb": "^6.27.13",
"@types/google-protobuf": "^3.15.6",
"axios": "^1.4.0",
"bech32": "^2.0.0",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"crypto": "^1.0.1",
"ecpair": "^2.1.0",
"google-protobuf": "^3.21.2",
"ledger-cosmos-js": "^2.1.8",
"secp256k1": "^5.0.0"
},
"prettier": {
"trailingComma": "all",
"semi": false,
"singleQuote": true
}
}