-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"name": "chickadee",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "NODE_ENV=production npm run build && node dist/index.js",
"dev": "NODE_ENV=development nodemon",
"test": "NODE_ENV=test mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc mocha -r ts-node/register tests/**/*.test.ts --timeout=3000"
},
"keywords": [
"defichain",
"monitoring",
"masternode"
],
"author": {
"name": "Ben Zumbrunn",
"email": "benzumbrunn@gmail.com",
"url": "https://github.com/benzumbrunn"
},
"license": "ISC",
"dependencies": {
"@defichain/jellyfish": "^0.13.0",
"config": "^3.3.6",
"knex": "^0.95.6",
"node-telegram-bot-api": "^0.53.0",
"sqlite3": "5.0.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/config": "0.0.38",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@types/node-telegram-bot-api": "^0.51.1",
"@types/sqlite3": "^3.1.7",
"chai": "^4.3.4",
"mocha": "^9.0.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}