forked from damonridenow/winston-postgres-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
{
"name": "winston-postgres-transport",
"description": "A Winston transport for PostgreSQL.",
"version": "1.2.1",
"keywords": [
"logging",
"postgres",
"postgresql",
"transport",
"winston"
],
"author": {
"email": "andrei.tretyakov@gmail.com",
"name": "Andrei Tretyakov",
"url": "https://github.com/ofkindness"
},
"scripts": {
"test": "jest winston-postgres-transport.test.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/damonridenow/winston-postgres-transport.git"
},
"homepage": "https://github.com/damonridenow/winston-postgres-transport",
"bugs": {
"url": "https://github.com/damonridenow/winston-postgres-transport/issues"
},
"main": "lib/winston-postgres-transport.js",
"dependencies": {
"moment": "^2.29.1",
"postgres": "^1.0.2",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"prettier": "^2.3.2"
},
"engines": {
"node": ">= 14.0.0"
}
}