-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "pino-transmit-http",
"version": "1.0.0-alpha.5",
"description": "A pino browser transmit that send log statements over HTTP",
"main": "index.js",
"scripts": {
"test": "tap --no-cov 'test/**/*.test.js'",
"lint": "standard",
"ci": "standard | snazzy && tap --cov 'test/**/*.test.js'"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sventschui/pino-transmit-http.git"
},
"keywords": [
"pino",
"transmit",
"http"
],
"author": "Sven Tschui <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sventschui/pino-transmit-http/issues"
},
"homepage": "https://github.com/sventschui/pino-transmit-http#readme",
"devDependencies": {
"pino": "^4.17.3",
"pre-commit": "^1.2.2",
"snazzy": "^7.1.1",
"standard": "^9.0.0",
"tap": "^10.2.2"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1"
},
"peerDependencies": {
"pino": "^4.17.3"
}
}