forked from winstonjs/winston-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "winston-transport",
"description": "Base stream implementations for winston@3 and up.",
"version": "4.3.0",
"main": "index.js",
"browser": "dist/index.js",
"scripts": {
"lint": "populist config/*.js index.js",
"pretest": "npm run lint && npm run build",
"test": "nyc mocha test/*.test.js",
"report": "nyc report --reporter=lcov",
"build": "./node_modules/.bin/rimraf dist && babel *.js -d ./dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:winstonjs/winston-transport.git"
},
"keywords": [
"winston",
"transport",
"winston3"
],
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/winstonjs/winston-transport/issues"
},
"homepage": "https://github.com/winstonjs/winston-transport#readme",
"dependencies": {
"readable-stream": "^2.3.6",
"triple-beam": "^1.2.0"
},
"devDependencies": {
"@types/node": "^10.1.4",
"abstract-winston-transport": ">= 0.3.0",
"assume": "^2.0.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint-config-populist": "^4.1.0",
"logform": "^1.4.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"rimraf": "^2.6.2",
"winston-compat": "~0.1.0"
},
"engines": {
"node": ">= 6.4.0"
}
}