-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "node-logservice-db-file-console",
"version": "0.3.4",
"description": "Creates a winston logger and additional logging colorized in the console if in development environnment.",
"main": "index.js",
"scripts": {
"test": "mocha",
"cov": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sven-piller/logService.git"
},
"keywords": [
"winston",
"log"
],
"author": "Sven Piller <[email protected]> (https://github.com/sven-piller/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sven-piller/logService/issues"
},
"homepage": "https://github.com/sven-piller/logService",
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
"ansi": "^0.3.1",
"lodash": "^4.17.4",
"winston": "^2.3.1",
"winston-mongodb": "^2.0.9"
},
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"eslint": "^4.4.1",
"eslint-formatter-markdown": "^1.0.3",
"grunt": "^1.0.1",
"grunt-eslint": "^19.0.0",
"intercept-stdout": "0.1.2",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"mocha-lcov-reporter": "^1.3.0",
"winston-daily-rotate-file": "^1.4.6"
}
}