-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.44 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.44 KB
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
{
"name": "winstonflight",
"version": "1.0.5",
"description": "A winston wrapper to enable adding transports by config",
"main": "index.js",
"scripts": {
"doc": "jsdoc -c jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md -d './doc' -r --verbose index.js",
"test": "mocha -R spec -t 5000 test/*.mocha.js",
"cover": "nyc --reporter=html --reporter=text mocha -t 5000 test/*.mocha.js",
"travis": "USER_MONGODB_URL='mongodb://travis:test@localhost:27017/mydb_test' nyc --reporter=lcovonly mocha -t 10000 test/*.mocha.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitmi/winstonflight.git"
},
"keywords": [
"util"
],
"author": "Rockie Guo",
"license": "MIT",
"bugs": {
"url": "https://github.com/kitmi/winstonflight/issues"
},
"homepage": "https://github.com/kitmi/winstonflight#readme",
"peerDependencies": {
"lodash": "4.x",
"winston": "3.x"
},
"devDependencies": {
"coveralls": "^3.0.2",
"fast-file-rotate": "^1.0.1",
"glob": "^7.1.2",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.2",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"shelljs": "^0.7.8",
"should": "^13.0.0",
"winston": "kitmi/winston",
"winston-daily-rotate-file": "^3.3.3",
"winston-elasticsearch": "^0.7.12",
"winston-mongodb": "^5.0.0"
}
}