-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "hapi-good-winston",
"version": "3.0.1",
"description": "A hapi good reporter to log events with winston",
"main": "./dist/index.js",
"scripts": {
"test": "tape -r babel-register test/**/*.js | tap-dot",
"build": "babel lib -d dist --source-maps",
"watch": "babel lib -d dist -w --source-maps",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/alexandrebodin/hapi-good-winston.git"
},
"keywords": [
"hapi",
"good",
"goodjs",
"winston",
"winstonjs",
"reporter",
"good-reporter",
"hapijs"
],
"author": "Alexandre BODIN <bodin.alex@gmail.com> (https://github.com/alexandrebodin)",
"maintainers": [
{
"name": "alexandrebodin",
"email": "bodin.alex@gmail.com",
"url": "https://github.com/alexandrebodin"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alexandrebodin/hapi-good-winston/issues"
},
"homepage": "https://github.com/alexandrebodin/hapi-good-winston",
"dependencies": {
"@hapi/good": "^8.0",
"@hapi/hapi": "^18.0",
"json-stringify-safe": "^5.0.1",
"winston": "2.x || 3.x"
},
"peerDependencies": {
"@hapi/good": "^8.0",
"@hapi/hapi": "^18.0",
"winston": "2.x || 3.x"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"tap-dot": "^1.0.5",
"tape": "^4.5.1"
}
}