forked from cosmos-client/cosmos-client-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.23 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
{
"name": "cosmos-client",
"description": "REST API Client for Cosmos SDK Blockchain",
"version": "0.42.14",
"author": "LCNEM, Inc.",
"bugs": {
"url": "https://github.com/cosmos-client/cosmos-client-ts/issues"
},
"scripts": {
"lint": "eslint \"src/**/*\"",
"test": "jest",
"test:watch": "jest --watch",
"build": "rm -r dist ; mkdir dist && npm run build:cjs && npm run build:esm && node bundle",
"build:cjs": "tsc --build --clean && tsc --target es5 --module commonjs && mv lib dist/cjs",
"build:esm": "tsc --build --clean && tsc --target esnext --module esnext && mv lib dist/esm",
"gen:openapi": "bash ./gen-openapi.sh",
"gen:proto": "bash ./gen-proto.sh",
"prepare": "husky install || exit 0"
},
"dependencies": {
"axios": "^0.21.1",
"bech32": "^1.1.3",
"bip32": "^2.0.5",
"bip39": "^3.0.2",
"protobufjs": "^6.11.2",
"rxjs": "^6.6.7",
"tiny-secp256k1": "^1.1.6",
"tweetnacl": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@openapitools/openapi-generator-cli": "^1.0.12-4.3.0",
"@types/bech32": "^1.1.1",
"@types/jest": "^26.0.20",
"@types/tiny-secp256k1": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-jest": "^26.6.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"husky": "^5.1.3",
"jest": "^26.6.3",
"prettier": "^2.3.2",
"ts-jest": "^26.4.4",
"typescript": "^4.2.3"
},
"homepage": "https://github.com/cosmos-client/cosmos-client-ts#readme",
"keywords": [
"Blockchain",
"Cosmos SDK"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmos-client/cosmos-client-ts.git"
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"exports": {
".": {
"node": "./cjs/index.js",
"default": "./esm/index.js"
},
"./openapi": {
"node": "./cjs/openapi/index.js",
"default": "./esm/openapi/index.js"
},
"./package.json": "./package.json"
}
}