-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.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-office365-connector-hook",
"version": "0.1.7",
"description": "A Winston transport hook to send logs over to a Office 365 Connector, e.g. Microsoft Teams channel.",
"main": "index.js",
"scripts": {
"test": "node test.js",
"version:patch": "npm version patch",
"push": "git push --tags origin HEAD:master",
"deploy": "npm run test && npm run version:patch && npm run push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SukantGujar/winston-office365-connector-hook.git"
},
"keywords": [
"office",
"365",
"connector",
"microsoft",
"teams",
"winston",
"log"
],
"author": "Sukant Gujar",
"license": "MIT",
"bugs": {
"url": "https://github.com/SukantGujar/winston-office365-connector-hook/issues"
},
"homepage": "https://github.com/SukantGujar/winston-office365-connector-hook#readme",
"devDependencies": {
"winston": "^2.3.1"
},
"peerDependencies": {
"winston": "^2.3.1"
},
"dependencies": {
"request": "^2.81.0"
}
}