-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "@youngkiu/pino-slack-webhook",
"version": "0.1.2",
"description": "pino-slack-webhook is a Pino v7+ compatible transport to forward log events to Slack from a dedicated worker",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "npm run build && tsc --watch",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest",
"release": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/youngkiu/pino-slack-webhook.git"
},
"keywords": [
"pino",
"logging",
"transport",
"slack",
"webhook"
],
"author": "YoungKi Lyu",
"license": "MIT",
"bugs": {
"url": "https://github.com/youngkiu/pino-slack-webhook/issues"
},
"homepage": "https://github.com/youngkiu/pino-slack-webhook#readme",
"dependencies": {
"axios": "^1.4.0",
"pino-abstract-transport": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"prettier": "2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "~5.0.4"
}
}