-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 884 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
{
"name": "pino-slack-transport",
"version": "1.1.0",
"description": "pino transport that sends logs to Slack",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"prepare": "tsc",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "github:ChrisLahaye/pino-slack-transport"
},
"keywords": [
"logger",
"pino",
"slack"
],
"author": "Chris Lahaye <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChrisLahaye/pino-slack-transport/issues"
},
"devDependencies": {
"@types/node": "^16.11.1",
"@types/node-fetch": "^2.5.12",
"standard-version": "^9.3.2",
"ts-standard": "^10.0.0",
"typescript": "^4.4.4"
},
"dependencies": {
"node-fetch": "^2.6.5",
"pino-abstract-transport": "^0.4.0"
}
}