forked from wja-no/winston-slack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 860 Bytes
/
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
{
"name": "@gojob/winston-slack",
"version": "0.1.1",
"contributors": [
"Vincent <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/vinceops/winston-slack"
},
"main": "./dist/winston-slack.js",
"types": "./dist/winston-slack.d.ts",
"scripts": {
"lint": "tslint -c tslint.json -p tsconfig.json",
"build": "tsc -p .",
"postinstall": "npm run build"
},
"keywords": [
"logging",
"sysadmin",
"tools",
"winston",
"slack",
"log",
"logger"
],
"peerDependencies": {
"winston": ">=0.7.2"
},
"engines": {
"node": ">= 0.10.3"
},
"dependencies": {
"@types/request": "^2.47.0",
"@types/winston": "^2.3.8",
"request": "^2.83.0",
"typescript": "^2.7.2",
"winston": "^2.4.0"
},
"devDependencies": {
"tslint": "^5.9.1"
}
}