-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "seneca-pino-adapter",
"version": "0.1.4",
"description": "A Pino log adapter for the Seneca framework.",
"main": "index.js",
"scripts": {
"test": "lab -v -P test -L -t 90",
"coveralls": "lab -r lcov | ./node_modules/.bin/coveralls",
"coverage": "lab -v -P test -L -t 80 -r html > doc/coverage.html",
"annotate": "docco index.js -o doc/annotated"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blueshirts/seneca-pino-adapter.git"
},
"keywords": [
"seneca",
"pino",
"node",
"microservice",
"logger",
"custuom"
],
"author": "Anthony Milano",
"license": "ISC",
"bugs": {
"url": "https://github.com/blueshirts/seneca-pino-adapter/issues"
},
"homepage": "https://github.com/blueshirts/seneca-pino-adapter#readme",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {},
"devDependencies": {
"app-root-path": "^2.x",
"chai": "^4.0.0",
"coveralls": "^2.13.x",
"lab": "^13.1.x",
"memorystream": "*",
"mocha": "^3.2.0",
"pino": "^3.0.x",
"seneca": "^3.3.x"
},
"peerDependencies": {
"pino": ">= 3.0.x",
"seneca": ">= 3.x"
}
}