UNPKG

1.93 kBJSONView Raw
1{
2 "name": "winston",
3 "description": "A logger for just about everything.",
4 "version": "3.6.0",
5 "author": "Charlie Robbins <charlie.robbins@gmail.com>",
6 "maintainers": [
7 "David Hyde <dabh@alumni.stanford.edu>"
8 ],
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/winstonjs/winston.git"
12 },
13 "keywords": [
14 "winston",
15 "logger",
16 "logging",
17 "logs",
18 "sysadmin",
19 "bunyan",
20 "pino",
21 "loglevel",
22 "tools",
23 "json",
24 "stream"
25 ],
26 "dependencies": {
27 "@dabh/diagnostics": "^2.0.2",
28 "async": "^3.2.3",
29 "is-stream": "^2.0.0",
30 "logform": "^2.4.0",
31 "one-time": "^1.0.0",
32 "readable-stream": "^3.4.0",
33 "safe-stable-stringify": "^2.3.1",
34 "stack-trace": "0.0.x",
35 "triple-beam": "^1.3.0",
36 "winston-transport": "^4.5.0"
37 },
38 "devDependencies": {
39 "@babel/cli": "^7.17.0",
40 "@babel/core": "^7.17.2",
41 "@babel/preset-env": "^7.16.7",
42 "@colors/colors": "1.5.0",
43 "@dabh/eslint-config-populist": "^5.0.0",
44 "@types/node": "^17.0.17",
45 "abstract-winston-transport": "^0.5.1",
46 "assume": "^2.2.0",
47 "cross-spawn-async": "^2.2.5",
48 "eslint": "^8.9.0",
49 "hock": "^1.4.1",
50 "mocha": "8.1.3",
51 "nyc": "^15.1.0",
52 "rimraf": "^3.0.2",
53 "split2": "^4.1.0",
54 "std-mocks": "^1.0.1",
55 "through2": "^4.0.2",
56 "winston-compat": "^0.1.5"
57 },
58 "main": "./lib/winston",
59 "browser": "./dist/winston",
60 "types": "./index.d.ts",
61 "scripts": {
62 "lint": "eslint lib/*.js lib/winston/*.js lib/winston/**/*.js --resolve-plugins-relative-to ./node_modules/@dabh/eslint-config-populist",
63 "test": "mocha",
64 "test:coverage": "nyc npm run test:unit",
65 "test:unit": "mocha test/unit",
66 "test:integration": "mocha test/integration",
67 "build": "rimraf dist && babel lib -d dist",
68 "prepublishOnly": "npm run build"
69 },
70 "engines": {
71 "node": ">= 12.0.0"
72 },
73 "license": "MIT"
74}