This repository was archived by the owner on Jun 9, 2023. It is now read-only.
forked from paulelie/winston-pg-native
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 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
52
53
54
55
56
57
58
{
"name": "@markjackson02/winston-pg-native",
"description": "A Winston transport for PostgreSQL. Uses high performance of native bindings.",
"version": "5.0.0",
"keywords": [
"winston 3.X",
"winston",
"postgres",
"logging",
"transport",
"postgres",
"postgresql",
"pg",
"libpq"
],
"author": {
"name": "Mark Jackson",
"email": "markjackson02@gmail.com",
"url": "https://github.com/markjackson02"
},
"scripts": {
"test": "nyc --reporter=text --reporter lcov npm run test:mocha",
"test:mocha": "mocha test/*.js test/**/*.js --exit"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/petpano/winston-pg-native"
},
"homepage": "https://github.com/petpano/winston-pg-native",
"bugs": {
"url": "https://github.com/petpano/winston-pg-native/issues"
},
"main": "lib/winston-pg-native.js",
"dependencies": {
"abstract-winston-transport": "^0.5.1",
"moment": "^2.23.0",
"pg": "^7.8.0",
"pg-native": "^3.0.0",
"sql": "^0.78.0",
"winston": "^3.0.0",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"hock": "^1.3.3",
"mocha": "^6.1.2",
"nyc": "^13.3.0",
"vows": "^0.8.2"
},
"engines": {
"node": ">= 6.0.0"
}
}