forked from winstonjs/winston
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "winston",
"description": "A multi-transport async logging library for Node.js",
"version": "3.0.0-rc5",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"maintainers": [
"Jarrett Cruger <jcrugzz@gmail.com>",
"Alberto Pose <albertopose@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/winstonjs/winston.git"
},
"keywords": [
"winston",
"logging",
"sysadmin",
"tools"
],
"dependencies": {
"async": "^2.6.0",
"diagnostics": "^1.0.1",
"is-stream": "^1.1.0",
"logform": "^1.6.0",
"one-time": "0.0.4",
"stack-trace": "0.0.x",
"triple-beam": "^1.2.0",
"winston-transport": "^3.2.1"
},
"devDependencies": {
"@types/node": "^9.6.6",
"abstract-winston-transport": ">= 0.5.1",
"assume": "^2.0.1",
"colors": "^1.2.0",
"cross-spawn-async": "^2.0.0",
"eslint-config-populist": "^4.1.0",
"hock": "^1.3.2",
"mocha": "^3.2.0",
"nyc": "^11.2.1",
"split2": "^2.1.1",
"std-mocks": "^1.0.0",
"through2": "^2.0.0",
"winston-compat": "^0.1.1"
},
"main": "./lib/winston",
"scripts": {
"lint": "populist lib/*.js lib/winston/*.js lib/winston/**/*.js",
"pretest": "npm run lint",
"test": "nyc mocha test/*.test.js test/**/*.test.js",
"report": "nyc report --reporter=lcov"
},
"engines": {
"node": ">= 6.4.0"
},
"license": "MIT"
}