forked from hangts/irishub-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.27 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
{
"name": "@irisnet/irishub-sdk",
"version": "0.0.1",
"description": "IRISHub JavaScript SDK",
"main": "index.js",
"typings": "src/index.ts",
"types": "./dist/src",
"files": [
"dist",
"dist/*",
"src/**/*.{ts,js}",
"types/**/*.ts",
"index.js",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json",
"yarn.lock"
],
"license": "Apache-2.0",
"keywords": [
"irishub",
"irishub-sdk",
"irisnet",
"cosmos"
],
"scripts": {
"node": "cd test/scripts/ && sh build.sh && sh start.sh",
"test": "yarn run node && jest -i --config jest.config.js && sh test/scripts/clean.sh",
"check": "gts check",
"clean": "gts clean",
"build": "rm -rf dist/* && tsc --emitDeclarationOnly && babel --extensions '.ts' src -d dist/src && cp LICENSE dist/ && cp README.md dist/ && cp package.json dist/ && cp -rf src/types/proto-types dist/src/types/proto-types",
"fix": "gts fix",
"docs": "npx typedoc && docker build -t irisnet/docs-irishub-sdk-js .",
"proto-gen": "sh ./scripts/protocgen.sh"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.7.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.1.4",
"@types/node": "^10.0.3",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.0",
"gts": "^1.1.2",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.2",
"tslint": "^6.1.0",
"typedoc": "^0.16.9",
"typescript": "^3.8.3"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@types/mathjs": "^6.0.4",
"@types/ws": "^7.2.2",
"axios": "^0.21.1",
"bech32": "^1.1.3",
"bip32": "^2.0.4",
"bip39": "^3.0.2",
"crypto-browserify": "^3.12.0",
"crypto-js": "^3.1.9-1",
"events": "^3.1.0",
"google-protobuf": "3.13.0",
"grpc-web": "^1.2.1",
"uuid": "^3.3.2",
"is_js": "^0.9.0",
"isomorphic-ws": "^4.0.1",
"mathjs": "^6.6.1",
"ndjson": "^1.5.0",
"pumpify": "^2.0.1",
"secp256k1": "^3.7.1",
"secure-random": "^1.1.2",
"sha256": "^0.2.0",
"sm-crypto": "git+http://github.com/bianjieai/sm-crypto-js.git#main"
}
}