forked from blushingpenguin/winston-azure-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
57
58
59
60
61
62
63
64
65
66
{
"name": "winston-azure-transport",
"description": "A winston transport for azure blobs",
"version": "3.0.4",
"private": false,
"dependencies": {
"async": "^2.6.1",
"azure-storage": "^2.10.2",
"winston-transport": "^4.3.0"
},
"scripts": {
"type-check": "tsc --noEmit",
"build": "yarn build:types && yarn build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"main": "lib/module.js",
"types": "lib/module.d.ts",
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-typescript": "^7.1.0",
"@types/async": "^2.4.0",
"@types/jest": "^23.3.12",
"@types/logform": "^1.2.0",
"@types/node": "^10.12.18",
"@types/qs": "^6.5.1",
"@types/triple-beam": "^1.3.0",
"typescript": "3.2.4"
},
"peerDependencies": {
"winston": "3.x"
},
"license": "MIT",
"author": "Mark Weaver <[email protected]>",
"keywords": [
"winston",
"transport",
"winston3",
"azure"
],
"bugs": {
"url": "https://github.com/blushingpenguin/winston-azure-transport/issues"
},
"homepage": "https://github.com/blushingpenguin/winston-azure-transport#readme",
"repository": {
"type": "git",
"url": "https://github.com/blushingpenguin/winston-azure-transport.git"
}
}