-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "@e-money/client.js",
"version": "0.2.11",
"description": "JavaScript client library for e-Money.com",
"keywords": [
"e-money",
"stablecoin",
"cryptocurrency",
"blockchain",
"wallet",
"dex"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/",
"docs/",
"*.md"
],
"scripts": {
"build": "rm -rf build/ && tsc",
"docs": "typedoc",
"prepack": "npm run build && npm run docs",
"lint": "eslint src/**/*.ts",
"create-proto-codecs": "./scripts/create-proto-codecs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e-money/client.js.git"
},
"author": "e-Money A/S",
"license": "Apache License v2.0",
"contributors": [
"Martin Dyring-Andersen <[email protected]>"
],
"bugs": {
"url": "https://github.com/e-money/client.js/issues"
},
"homepage": "https://e-money.com",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"ts-proto": "^1.83.0",
"typedoc": "^0.22.4",
"typescript": "^4.4.3"
},
"dependencies": {
"@cosmjs/amino": "^0.26.0",
"@cosmjs/proto-signing": "^0.26.0",
"@cosmjs/stargate": "^0.26.0",
"@cosmjs/tendermint-rpc": "^0.26.0"
}
}