-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
81 lines (81 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pino-logflare",
"version": "0.4.2",
"description": "A transport for Pino that sends messages to Logflare",
"homepage": "https://github.com/logflare/pino-logflare",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev:cli": "node ./test/debug.js | node ./src/cli.js",
"test": "jest",
"test.watch": "jest --watch",
"vsn": "node -e \"console.log(require('./package.json').version);\""
},
"bin": {
"pino-logflare": "dist/cli.js"
},
"files": [
"dist"
],
"keywords": [
"pino",
"pino-transport",
"logflare",
"logging"
],
"author": "Zack Krida <[email protected]> (https://zackkrida.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/logflare/pino-logflare.git"
},
"engines": {
"node": ">=10.2.0"
},
"precommit": [
"lint",
"test"
],
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@types/node": "^14.0.14",
"@types/pumpify": "^1.4.1",
"@types/split2": "^2.1.6",
"@types/through2": "^2.0.36",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.1.0",
"jest-mock-process": "^1.4.0",
"pino-multi-stream": "^5.0.0",
"sinon": "^9.0.1",
"typescript": "^4.2.0"
},
"dependencies": {
"batch2": "^1.0.6",
"commander": "^5.0.0",
"fast-json-parse": "^1.0.3",
"logflare-transport-core": "^0.3.3",
"pino": "^6.3.2",
"pumpify": "^2.0.1",
"split2": "^3.1.1",
"through2": "^3.0.1"
},
"prettier": {
"singleQuote": false,
"semi": false,
"arrowParens": "always"
},
"bugs": {
"url": "https://github.com/logflare/pino-logflare/issues"
},
"directories": {
"doc": "docs",
"test": "test"
}
}