forked from cosmos/ledger-cosmos-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.4 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
{
"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.11.2",
"@ledgerhq/hw-transport": "^5.25.0",
"bech32": "^1.1.4",
"ripemd160": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@ledgerhq/hw-transport-node-hid": "^5.25.0",
"@ledgerhq/hw-transport-u2f": "^5.25.3",
"@ledgerhq/hw-transport-webusb": "^5.25.0",
"@ledgerhq/logs": "^5.25.0",
"@vue/cli-plugin-babel": "^4.5.6",
"@vue/cli-plugin-eslint": "^4.5.6",
"@vue/cli-service": "^4.5.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"bip32": "2.0.6",
"bip39": "3.0.2",
"core-js": "^3.6.5",
"crypto-js": "4.0.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.0.0",
"index.js": "^0.0.3",
"jest": "^26.4.2",
"jest-serial-runner": "^1.1.0",
"prettier": "^2.1.2",
"secp256k1": "^4.0.2",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"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": "openssl req -nodes -new -x509 -config certs/openssl.cnf -keyout certs/server.key -out certs/server.cert; openssl x509 -in certs/server.cert -out certs/cert.pem -outform PEM; vue-cli-service serve vue_example/main.js"
},
"moduleDirectories": [
"node_modules",
"dist"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"publishConfig": {
"access": "public"
}
}