forked from MainframeOS/erebos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 873 Bytes
/
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
{
"name": "@erebos/wallet-hd",
"version": "0.8.0",
"description": "Ethereum HD Wallet",
"repository": "[email protected]:MainframeHQ/erebos.git",
"main": "cjs/index.js",
"module": "esm/index.js",
"author": "Mainframe",
"license": "MIT",
"files": [
"cjs/*",
"esm/*"
],
"scripts": {
"clean": "del cjs esm",
"build:cjs": "BABEL_ENV='browser-cjs' babel src --out-dir cjs",
"build:esm": "BABEL_ENV='browser-esm' babel src --out-dir esm",
"build:js": "yarn build:cjs && yarn build:esm",
"build:flow": "flow-copy-source src cjs && flow-copy-source src esm",
"build": "yarn clean && yarn build:js && yarn build:flow",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"@erebos/secp256k1": "^0.7.0",
"ethers": "^4.0.30"
},
"devDependencies": {
"flow-bin": "^0.101.0"
}
}