forked from carboclan/LSDi-airswap-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "airswap-bot",
"version": "0.0.1",
"description": "simple Airswap maker for Market Protocol position tokens",
"keywords": [
"Airswap",
"MARKET Protocol",
"ethereum",
"blockchain",
"dApp",
"trading",
"derivatives",
"decentralized"
],
"license": "MIT",
"type": "module",
"author": "Dan Matthews <dan@cryptobuilders.io>",
"homepage": "https://github.com/marketprotocol/airswap-bot",
"repository": {
"type": "git",
"url": "https://github.com/marketprotocol/airswap-bot.git"
},
"bugs": {
"mail": "dan@cryptobuilders.io",
"url": "https://github.com/marketprotocol/airswap-bot/issues"
},
"main": "lib/index.js",
"scripts": {
"lint": "eslint src",
"start": "npm run lint && node -r esm src/index.js",
"pm2": "pm2 start ecosystem.config.js",
"wallet": "node -r esm src/createWallet.js",
"transfer": "node -r esm src/sendFunds.js"
},
"dependencies": {
"airswap.js": "^0.1.7",
"bignumber.js": "^9.0.0",
"esm": "^3.2.25",
"ethers": "4.0.30",
"node-fetch": "^2.6.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"coveralls": "3.0.4",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.17.3",
"flow-bin": "0.101.1",
"flow-typed": "2.5.2",
"fs-file-tree": "1.0.7",
"jest": "24.8.0",
"nodemon": "^1.19.1",
"rimraf": "2.6.3"
}
}