-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 941 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
{
"name": "winston-udp-transport",
"version": "0.0.7",
"description": "UDP transport for winston logger",
"main": "build/index.js",
"module": "src/index.js",
"scripts": {
"prepublishOnly": "yarn run build",
"build": "babel src --out-dir build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://github.com/penske-media-corp/winston-udp-transport",
"author": "Anton Karmazin <[email protected]>",
"license": "MIT",
"dependencies": {
"winston": "^2.4.0"
},
"keywords": [
"winston",
"logstash-udp",
"winston-transport"
],
"repository": {
"type": "git",
"url": "https://github.com/penske-media-corp/winston-udp-transport.git"
},
"bugs": "https://github.com/penske-media-corp/winston-udp-transport/issues",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1"
},
"babel": {
"presets": [
"env"
]
}
}