-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "winston-telegram",
"description": "A Telegram transport for winston",
"version": "2.7.0",
"author": "Ivan Marban",
"repository": {
"type": "git",
"url": "https://github.com/ivanmarban/winston-telegram.git"
},
"bugs": {
"url": "https://github.com/ivanmarban/winston-telegram/issues"
},
"keywords": [
"logging",
"sysadmin",
"tools",
"winston",
"telegram",
"bot"
],
"dependencies": {
"winston-transport": "^4.3.0"
},
"peerDependencies": {
"winston": "^3.0.0"
},
"main": "lib/winston-telegram",
"engines": {
"node": ">= 14.0.0"
},
"types": "lib/winston-telegram",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.10",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"nock": "^13.4.0",
"nyc": "^15.1.0",
"prettier-standard": "^16.4.1",
"sinon": "^17.0.1",
"winston": "^3.7.2"
},
"scripts": {
"lint": "eslint lib test examples --color",
"format": "prettier-standard 'lib/**/*.js' 'test/**/*.js' 'examples/**/*.js'",
"test": "mocha",
"test:coverage": "nyc npm run test"
}
}