-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "winston-discord-transport",
"version": "1.3.0",
"description": "A Discord transport for winston logger",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"build-ts": "tsc --declaration",
"prebuild": "npm run clean",
"build": "npm run build-ts && npm run tslint",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/superagent": "4.1.7",
"tslint": "6.1.1",
"typescript": "3.8.3"
},
"repository": {
"type": "git",
"url": "git@github.com:sidhantpanda/winston-discord-transport.git"
},
"keywords": [
"discord",
"winston",
"log",
"logger"
],
"author": "Sidhant Panda",
"license": "MIT",
"dependencies": {
"logform": "2.1.2",
"superagent": "5.2.2",
"winston-transport": "4.3.0"
},
"bugs": {
"url": "https://github.com/sidhantpanda/winston-discord-transport/issues"
},
"homepage": "https://github.com/sidhantpanda/winston-discord-transport#readme"
}