-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
57
58
59
60
61
62
63
64
{
"name": "LSDi-airswap-bot",
"version": "0.0.1",
"description": "simple Airswap maker for LSDi position tokens",
"keywords": [
"Yellow Hat DAO",
"Airswap",
"MARKET Protocol",
"ethereum",
"blockchain",
"dApp",
"trading",
"derivatives",
"decentralized"
],
"license": "MIT",
"author": "Dan Matthews <[email protected]>",
"homepage": "https://github.com/carboclan/LSDi-airswap-bot",
"repository": {
"type": "git",
"url": "https://github.com/carboclan/LSDi-airswap-bot.git"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/carboclan/LSDi-airswap-bot/issues"
},
"main": "lib/index.js",
"scripts": {
"build": "npm run lint && npm run clean && npx babel src --out-dir lib",
"clean": "rimraf ./coverage && rimraf ./lib",
"coveralls": "npm run test:cover && cat ./coverage/lcov.info | coveralls",
"lint": "eslint src",
"start": "npm run build && node lib/index.js",
"test": "NODE_ENV=test jest",
"test:cover": "NODE_ENV=test jest --coverage",
"test:watch": "NODE_ENV=test jest --watch",
"watch": "npx nodemon --exec npm run build"
},
"dependencies": {
"airswap.js": "^0.1.7",
"bignumber.js": "^9.0.0",
"core-js": "^3.1.4",
"ethers": "4.0.30",
"node-fetch": "^2.6.0",
"regenerator-runtime": "^0.13.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-plugin-inline-json-import": "^0.3.2",
"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"
}
}