-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "ledger-bridge",
"version": "1.0.0",
"description": "ledger-bridge for insert iframe to extension zilpay",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js --progress --colors -o ./index.js",
"build:prod": "cross-env NODE_ENV=production npm run build",
"watch": "webpack --config webpack.config.js --watch --progress --colors -o ./index.js",
"dev": "npm run watch | npx http-server -S -C cert.pem ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zilpay/ledger-bridge.git"
},
"keywords": [
"zilpay",
"ledger"
],
"author": "hicaru",
"license": "MIT",
"bugs": {
"url": "https://github.com/zilpay/ledger-bridge/issues"
},
"homepage": "https://github.com/zilpay/ledger-bridge#readme",
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.11.2",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"http-server": "^0.12.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@ledgerhq/hw-transport-u2f": "^5.36.0-deprecated",
"@ledgerhq/hw-transport-webusb": "^5.43.0",
"@zilliqa-js/account": "^2.2.0",
"@zilliqa-js/util": "^2.2.0",
"js-sha256": "^0.9.0"
}
}