-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "@eidoo/hybrid-exchange-sdk",
"version": "2.4.0",
"cliVersion": "0.1.0",
"bin": {
"hybrid-exchange-cli": "bin/hybrid-exchange-cli.js"
},
"description": "Eidoo Hybrid Exchange SDK.",
"main": "index.js",
"scripts": {
"release": "git add . && yarn version && VERSION=$(yarn -s version:current) && git push origin release/v$VERSION && git push origin v$VERSION && git checkout master && git pull --rebase && git rebase release/v$VERSION && git push origin master && git checkout dev && git pull --rebase && git rebase release/v$VERSION && git push origin dev",
"start": "bin/hybrid-exchange-cli.js",
"test": "jest",
"lint": "eslint . --ext .js",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"test:unit": "jest test/unit",
"version:current": "echo $npm_package_version"
},
"engines": {
"node": ">=10.0.0 <=10.16.1"
},
"keywords": [
"eidoo",
"hybrid-exchange-cli",
"hybrid-exchange-sdk"
],
"author": "Eidoo Sagl.",
"license": "MIT",
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"jest": "24.8.0",
"jest-junit": "6.4.0",
"rosie": "2.0.1",
"sinon": "7.2.2"
},
"dependencies": {
"@eidoo/ethapi-lib": "eidoo/ethapi-lib#release/v1.0.3",
"@hapi/joi": "^15.1.0",
"axios": "0.19.0",
"bip39": "2.5.0",
"bn.js": "4.11.8",
"bunyan": "1.8.12",
"dotenv": "6.1.0",
"ethereumjs-abi": "0.6.6",
"ethereumjs-tx": "1.3.7",
"ethereumjs-util": "5.2.0",
"ethereumjs-wallet": "0.6.3",
"inquirer": "6.2.2",
"keythereum": "1.0.4",
"lodash": "4.17.15",
"web3": "0.20.7",
"yargs": "12.0.5"
}
}