-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.29 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "winston-azure-blob",
"version": "1.5.0",
"description": "NEW winston transport for azure blob storage",
"keywords": [
"winston",
"transport",
"azure",
"blob",
"log"
],
"homepage": "https://github.com/agmoss/winston-azure-blob#readme",
"bugs": {
"url": "https://github.com/agmoss/winston-azure-blob/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agmoss/winston-azure-blob.git"
},
"license": "MIT",
"author": "sdnetwork",
"contributors": [
"Andrew Moss <andrew@m0ss.dev>"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"example": "DEBUG='winston-azure-blob' ts-node examples/index.ts",
"format": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\" \"examples/**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish": "yarn run build",
"release": "standard-version",
"test": "DEBUG='winston-azure-blob' env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'"
},
"dependencies": {
"@azure/storage-blob": "^12.8.0",
"debug": "^4.3.3",
"moment": "^2.29.1",
"triple-beam": "^1.3.0",
"winston-transport": "^4.4.2"
},
"devDependencies": {
"@ngneat/falso": "^2.20.0",
"@types/async": "^3.2.5",
"@types/chai": "^4.2.15",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.168",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.13",
"@types/triple-beam": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"chai": "^4.3.4",
"dotenv": "^14.3.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"lodash": "^4.17.21",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"winston": ">=3.0.0"
},
"peerDependencies": {
"async": "^3.2.0",
"winston": ">=3.0.0"
},
"engines": {
"node": ">=6.0.0"
}
}