-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
53 lines (53 loc) · 1.26 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
53
{
"name": "pino-mongodb",
"version": "4.3.0",
"description": "Insert JSON from stdin into MongoDB",
"files": [
"lib"
],
"scripts": {
"test": "tap test/*.js",
"test:end2end": "npm test && tap --no-check-coverage -t 0 test/end-to-end/*.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"help": "./pino-mongodb.js --help > HELP.md",
"trial": "./trial/run.sh"
},
"main": "pino-mongodb.js",
"bin": "pino-mongodb.js",
"repository": {
"type": "git",
"url": "https://github.com/pinojs/pino-mongodb.git"
},
"keywords": [
"pino",
"mongo",
"mongodb",
"pino-mongodb",
"logs",
"logger"
],
"author": "Viktor Kuroljov",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/pino-mongodb/issues"
},
"homepage": "https://github.com/pinojs/pino-mongodb",
"dependencies": {
"carrier": "^0.3",
"commander": "^10.0",
"mongodb": "^4.7",
"muri": "^1.3",
"pino-abstract-transport": "^1.0.0"
},
"devDependencies": {
"eslint": "7.32",
"eslint-config-standard": "16.0",
"eslint-plugin-import": "2.29",
"eslint-plugin-node": "11.1",
"eslint-plugin-promise": "5.2",
"eslint-plugin-standard": "5.0",
"pino": "^8.0.0",
"tap": "^16.x"
}
}