forked from Zondax/ledger-cosmos-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.18 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": "ledger-cosmos-js",
"version": "0.0.0",
"description": "Node API for Cosmos App (Ledger Nano S/X)",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zondax/ledger-cosmos-js.git"
},
"keywords": [
"Ledger",
"Javascript",
"Tendermint",
"Cosmos"
],
"author": "ZondaX GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zondax/ledger-cosmos-js/issues"
},
"homepage": "https://github.com/zondax/ledger-cosmos-js",
"dependencies": {
"@babel/runtime": "^7.6.3",
"@ledgerhq/hw-transport": "^4.73.3",
"bech32": "^1.1.3",
"ripemd160": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@ledgerhq/hw-transport-node-hid": "^4.73.3",
"@ledgerhq/hw-transport-u2f": "^4.73.3",
"@ledgerhq/hw-transport-webusb": "^4.73.3",
"@ledgerhq/logs": "^4.72.0",
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "^4.0.5",
"@vue/cli-service": "^4.0.5",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"bip32": "2.0.4",
"bip39": "3.0.2",
"core-js": "^3.3.4",
"crypto-js": "3.1.9-1",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.2.3",
"index.js": "^0.0.3",
"jest": "^24.9.0",
"jest-serial-runner": "^1.1.0",
"prettier": "^1.18.2",
"secp256k1": "^3.7.1",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"scripts": {
"build": "babel src --out-dir dist",
"test:unit": "jest -c jest.config.unit.js",
"test:integration": "jest -c jest.config.integration.js --runInBand --detectOpenHandles",
"serve": "vue-cli-service serve vue_example/main.js"
},
"moduleDirectories": [
"node_modules",
"dist"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}