-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "mp-oracle",
"version": "0.0.1",
"description": "simple Oracle for triggering Market Protocol contract settlement",
"keywords": [
"MARKET Protocol",
"ethereum",
"blockchain",
"dApp",
"trading",
"derivatives",
"decentralized"
],
"license": "MIT",
"type": "module",
"author": "Dan Matthews <dan@cryptobuilders.io>",
"homepage": "https://github.com/marketprotocol/mp-oracle",
"repository": {
"type": "git",
"url": "https://github.com/marketprotocol/mp-oracle.git"
},
"bugs": {
"mail": "dan@cryptobuilders.io",
"url": "https://github.com/marketprotocol/mp-oracle/issues"
},
"main": "lib/index.js",
"scripts": {
"approve": "node -r esm src/approve.js",
"lint": "eslint src",
"oracles": "node -r esm src/oracleAddresses.js",
"pm2": "pm2 start ecosystem.config.js",
"settlement": "node -r esm src/settlementCheck.js",
"start": "npm run lint && node -r esm src/index.js",
"tokens": "node -r esm src/positionTokenAddresses.js",
"transfer": "node -r esm src/sendFunds.js",
"wallet": "node -r esm src/createWallet.js"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"esm": "^3.2.25",
"ethers": "4.0.30",
"node-fetch": "^2.6.0",
"uuid": "^3.3.2",
"ws": "^7.1.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"
}
}