forked from Kikobeats/sails-hook-winston
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 933 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 933 Bytes
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": "sails-hook-winston",
"description": "Integrates winston logging system with your Sails application",
"version": "0.2.0",
"author": {
"name": "Kiko Beats",
"email": "josefrancisco.verdu@gmail.com",
"url": "https://github.com/Kikobeats"
},
"bugs": {
"url": "Kikobeats/sails-hook-winston/issues"
},
"dependencies": {
"mkdirp": "*",
"winston": "^2.1.0",
"winston-daily-rotate-file": "^1.0.1",
"winston-mongodb": "*"
},
"devDependencies": {
"sails": "~0.11.0",
"should": "*",
"mocha": "*"
},
"engines": {
"node": ">= 0.10.0",
"npm": ">= 1.4.0"
},
"homepage": "Kikobeats/sails-hook-winston",
"keywords": [
"sails",
"hooks",
"winston",
"logging"
],
"license": "MIT",
"main": "./index.js",
"repository": "Kikobeats/sails-hook-winston",
"scripts": {
"test": "sh test/test.sh"
},
"sails": {
"isHook": true
}
}