-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.27 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
{
"name": "ledger-sdk",
"version": "2.1.0",
"description": "Ledger SDK",
"main": "build/index.js",
"scripts": {
"build": "npm run transpile && npm run minify",
"transpile": "babel src --out-dir build",
"browserify": "browserify src/index.js -g [ babelify --presets [ \"babel-preset-env\" ] ] -o dist/LedgerSDK.js",
"minify": "browserify src/index.js -g [ babelify --presets [ \"babel-preset-env\" ] ] | uglifyjs --source-map -m -c -o dist/LedgerSDK.min.js",
"test": "npm run browserify && node test/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hotwallet/ledger-sdk.git"
},
"author": "hotwallet",
"license": "MIT",
"bugs": {
"url": "https://github.com/hotwallet/ledger-sdk/issues"
},
"homepage": "https://github.com/hotwallet/ledger-sdk#readme",
"dependencies": {
"@ledgerhq/hw-app-btc": "^4.19.0",
"@ledgerhq/hw-app-eth": "^4.19.0",
"@ledgerhq/hw-app-xrp": "^4.19.0",
"@ledgerhq/hw-transport-u2f": "^4.19.0",
"babel-polyfill": "^6.26.0",
"xpubjs": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"express": "^4.16.3",
"uglify-js": "^3.4.4"
}
}