forked from thorchain/ledger-thorchain-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.37 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
{
"name": "@xchainjs/ledger-thorchain",
"version": "0.2.0",
"description": "Node API for THORChain App (Ledger Nano S/X)",
"main": "lib/index.js",
"module": "lib-es/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/xchainjsledger-thorchain-js.git"
},
"keywords": [
"Ledger",
"TypeScript",
"Tendermint",
"THORChain"
],
"author": "THORChain",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/xchainjs/ledger-thorchain-js/issues"
},
"homepage": "https://github.com/xchainjs/ledger-thorchain-js",
"dependencies": {
"@ledgerhq/hw-transport": "6.30.1",
"@ledgerhq/hw-transport-webhid": "6.28.1",
"@ledgerhq/hw-transport-node-hid": "6.28.1",
"@ledgerhq/hw-transport-webusb": "6.28.1",
"bech32": "^2.0.0",
"crypto-browserify": "^3.12.0",
"ripemd160": "^2.0.2",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@ledgerhq/hw-transport-node-hid": "6.28.1",
"@ledgerhq/hw-transport-webusb": "6.28.1",
"@ledgerhq/logs": "^6.2.0",
"@types/jest": "^26.0.24",
"@types/ledgerhq__hw-transport": "4.21.8",
"@types/node": "^16.4.8",
"@types/node-hid": "^1.3.1",
"@types/ripemd160": "^2.0.0",
"@types/secp256k1": "^4.0.3",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"bip32": "2.0.6",
"bip39": "3.0.4",
"core-js": "^3.16.0",
"crypto-js": "4.1.1",
"dotenv": "^10.0.0",
"index.js": "^0.0.3",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"secp256k1": "^4.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.9.4",
"vue": "^3.3.12"
},
"scripts": {
"clean": "rimraf \"{lib,lib-es}\"/**",
"build": "yarn clean && tsc && tsc -m ES6 --outDir lib-es",
"test": "jest",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix --max-warnings 0",
"prepublishOnly": "yarn build",
"test:unit": "jest -c jest.config.unit.js",
"test:e2e": "jest -c jest.config.e2e.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",
"lib"
],
"publishConfig": {
"access": "public"
}
}