This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.59 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": "metronome-daily-status-bot",
"version": "0.0.1",
"description": "Metronome daily auction monitor",
"main": "index.js",
"scripts": {
"start": "forever --minUptime 5000 --spinSleepTime 5000 server.js",
"test": "jest",
"config": "node -e \"console.log(JSON.stringify(require('config'), null, 2))\"",
"lint": "eslint ."
},
"author": "ndelvalle <[email protected]>",
"dependencies": {
"before-exit": "1.0.0",
"bignumber.js": "7.2.1",
"bloq-service-logger": "file:lib/bloq-service-logger",
"coincap-lib": "1.0.0",
"config": "1.30.0",
"date-fns": "1.29.0",
"forever": "1.0.0",
"metronome-contracts": "2.4.0",
"metronome-sdk-status": "1.1.0",
"node-persist": "3.0.1",
"p-retry": "2.0.0",
"promise-lead-debounce": "file:lib/promise-lead-debounce",
"promise-prototype-finally": "1.0.0",
"time-bombs": "1.0.0",
"timediff": "1.1.1",
"twitter": "1.7.1",
"web3": "1.0.0-beta.37"
},
"devDependencies": {
"@types/jest": "24.0.15",
"eslint": "5.16.0",
"eslint-config-bloq": "1.3.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jsdoc": "7.0.2",
"eslint-plugin-mocha": "5.3.0",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-prefer-arrow": "1.1.5",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"husky": "2.3.0",
"jest": "24.8.0",
"proxyquire": "2.0.1",
"sinon": "7.3.2"
},
"jest": {
"collectCoverageFrom": [
"src/**"
],
"roots": [
"test/"
]
},
"license": "MIT"
}