-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "@firmachain/firma-js",
"version": "0.2.64",
"description": "The Official FirmaChain Javascript SDK written in Typescript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "mocha test/**/*.test.ts -r ts-node/register --timeout 1200000",
"lint": "eslint src test --ext .ts,.tsx",
"nodemon": "nodemon",
"dev": "ts-node ./test/test_index.ts",
"build": "tsc --module commonjs"
},
"repository": {
"type": "git",
"url": "git://github.com/firmachain/firma-js.git"
},
"keywords": [
"firma",
"firmachain",
"javascript",
"typescript"
],
"author": "FirmaChain <[email protected]>",
"license": "MIT License",
"bugs": {
"url": "https://github.com/firmachain/firma-js/issues"
},
"homepage": "https://firmachain.org",
"dependencies": {
"@cosmjs/amino": "0.26.0",
"@cosmjs/launchpad": "0.25.6",
"@cosmjs/math": "0.26.0",
"@cosmjs/proto-signing": "0.25.6",
"@cosmjs/tendermint-rpc": "0.26.0",
"@tharsis/address-converter": "0.1.8",
"@types/pako": "2.0.0",
"axios": "0.27.2",
"big-number": "2.0.0",
"cosmjs-types": "0.2.0",
"crypto-js": "4.1.1",
"form-data": "4.0.0",
"pako": "2.0.2",
"protobufjs": "6.10.2",
"readline-sync": "1.4.10"
},
"devDependencies": {
"@types/chai": "4.2.21",
"@types/mocha": "9.0.0",
"@types/node": "16.4.3",
"chai": "4.3.4",
"mocha": "9.1.1",
"nodemon": "2.0.12",
"ts-node": "10.2.1",
"typescript": "4.3.5"
}
}