forked from confio/ts-relayer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.44 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@confio/relayer",
"version": "0.5.1",
"description": "IBC Relayer in TypeScript",
"repository": "https://github.com/confio/ts-relayer",
"license": "MIT",
"keywords": [],
"browserslist": [
"maintained node versions"
],
"main": "build/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"**/*.{ts,md}\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"**/*.{ts,md}\" --list-different",
"test:unit": "nyc --silent ava --serial",
"focused-test": "yarn test:unit ./src/cw20/cosmwasm.spec.ts",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "nyc --silent ava --watch --serial",
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:lcov": "nyc report --reporter=lcov",
"cov:send": "run-s cov:lcov && codecov",
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
"proto": "./scripts/proto/get-proto.sh && ./scripts/proto/define-proto.sh && yarn fix",
"postinstall": "patch-package"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.28.9",
"@cosmjs/crypto": "^0.28.9",
"@cosmjs/encoding": "^0.28.9",
"@cosmjs/faucet-client": "^0.28.9",
"@cosmjs/math": "^0.28.9",
"@cosmjs/proto-signing": "^0.28.9",
"@cosmjs/stargate": "^0.28.9",
"@cosmjs/stream": "^0.28.9",
"@cosmjs/tendermint-rpc": "^0.28.9",
"@cosmjs/utils": "^0.28.9",
"ajv": "7.1.1",
"axios": "0.21.4",
"commander": "7.1.0",
"cosmjs-types": "^0.4.0",
"fast-safe-stringify": "2.0.4",
"js-yaml": "4.0.0",
"lodash": "4.17.21",
"patch-package": "^6.4.7",
"prom-client": "13.1.0",
"protobufjs": "^6.10.3",
"table": "^6.7.1",
"triple-beam": "1.3.0",
"winston": "3.3.3"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@changesets/cli": "^2.16.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.25",
"@types/sinon": "^9.0.10",
"@types/triple-beam": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"ava": "^3.12.1",
"codecov": "^3.5.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"open-cli": "^6.0.1",
"prettier": "^2.1.1",
"sinon": "^9.2.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"files": [
"build/**/*.js",
"build/**/*.d.ts",
"!build/**/*.spec.js",
"!build/**/*.spec.d.ts",
"!build/lib/testutils.js",
"!build/lib/testutils.d.ts",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"ava": {
"failFast": true,
"timeout": "120s",
"typescript": {
"rewritePaths": {
"src/": "build/"
}
}
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
},
"prettier": {
"singleQuote": true
},
"bin": {
"ibc-setup": "build/binary/ibc-setup/index.js",
"ibc-relayer": "build/binary/ibc-relayer/index.js"
}
}