-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 957 Bytes
/
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
{
"name": "cosmjs-sandbox",
"version": "1.0.0",
"description": "Experiment with simple CosmJS concepts.",
"main": "index.js",
"scripts": {
"experiment": "ts-node experiment.ts",
"testapi": "ts-node test.ts",
"testapi2": "ts-node test2.ts",
"testconvert": "ts-node convertObject.ts",
"testpratt": "ts-node testpratt.ts",
"testmultisig": "ts-node testMultisig.ts",
"grant": "ts-node multisiggrant.ts",
"send": "ts-node multisigsend.ts",
"single": "ts-node singlesiggrant.ts",
"multi": "ts-node multitest.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "B9lab",
"license": "ISC",
"devDependencies": {
"ts-node": "10.7.0"
},
"dependencies": {
"@cosmjs/amino": "0.32.2",
"@cosmjs/proto-signing": "0.32.2",
"@cosmjs/stargate": "0.32.2",
"axios": "^1.6.2",
"cosmjs-types": "^0.9.0",
"pratt-parser": "^9.0.2",
"uint8-to-base64": "^0.2.0"
}
}