-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 988 Bytes
/
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
{
"name": "serviser-logger",
"version": "2.0.4",
"description": "wrapper around winston logger",
"main": "index.js",
"scripts": {
"test": "mocha --ui bdd --colors --check-leaks -t 5000 --reporter spec 'tests/**/*.js'",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec 'tests/**/*.js' -t 5000"
},
"contributors": [
"fogine",
"Juraj"
],
"files": [
"index.js",
"CHANGELOG.md",
"README.md"
],
"engines": {
"node": ">=4.0.0"
},
"testFramework": "mocha",
"keywords": [
"log"
],
"author": "fogine",
"private": false,
"dependencies": {
"fluent-logger": "2.7.0",
"lodash": "^4.16.2",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"license": "GPL-3.0",
"devDependencies": {
"chai": "^4.1.2",
"istanbul": "^0.4.3",
"mocha": "^3.5.3",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"tmp": "0.0.29"
}
}