1 | {
|
2 | "name": "winston-loki",
|
3 | "version": "4.0.2",
|
4 | "description": "A Winston transport for Grafana Loki",
|
5 | "keywords": [
|
6 | "winston",
|
7 | "winston-transport",
|
8 | "transport",
|
9 | "loki",
|
10 | "grafana",
|
11 | "logging",
|
12 | "plugin",
|
13 | "SRE",
|
14 | "site reliability engineering",
|
15 | "grafana loki"
|
16 | ],
|
17 | "main": "index.js",
|
18 | "scripts": {
|
19 | "build:proto": "./node_modules/.bin/pbjs -t static-module -w commonjs -o ./src/proto/index.js ./src/proto/logproto.proto && npm run lint:fix",
|
20 | "test": "./node_modules/.bin/standard && ./node_modules/.bin/jest",
|
21 | "lint": "./node_modules/.bin/standard",
|
22 | "lint:fix": "./node_modules/.bin/standard --fix",
|
23 | "coverage": "jest --coverage",
|
24 | "coveralls": "jest --coverage && cat ./test/coverage/lcov.info | coveralls"
|
25 | },
|
26 | "standard": {
|
27 | "env": {
|
28 | "node": true,
|
29 | "jest": true
|
30 | },
|
31 | "ignore": [
|
32 | "test/coverage"
|
33 | ]
|
34 | },
|
35 | "jest": {
|
36 | "coverageDirectory": "./test/coverage",
|
37 | "coveragePathIgnorePatterns": [
|
38 | "./node_modules/",
|
39 | "./test/",
|
40 | "./src/proto/index.js"
|
41 | ]
|
42 | },
|
43 | "author": "Jani Anttonen",
|
44 | "license": "MIT",
|
45 | "repository": {
|
46 | "type": "git",
|
47 | "url": "https://github.com/JaniAnttonen/winston-loki.git"
|
48 | },
|
49 | "dependencies": {
|
50 | "async-exit-hook": "2.0.1",
|
51 | "got": "^9.5.0",
|
52 | "moment": "^2.24.0",
|
53 | "protobufjs": "^6.8.8",
|
54 | "winston-transport": "^4.3.0"
|
55 | },
|
56 | "optionalDependencies": {
|
57 | "snappy": "^6.1.1"
|
58 | },
|
59 | "devDependencies": {
|
60 | "coveralls": "^3.0.2",
|
61 | "eslint": "^5.12.0",
|
62 | "eslint-config-prettier": "^3.6.0",
|
63 | "eslint-config-standard": "^12.0.0",
|
64 | "eslint-plugin-import": "^2.14.0",
|
65 | "eslint-plugin-node": "^8.0.1",
|
66 | "eslint-plugin-prettier": "^3.0.1",
|
67 | "eslint-plugin-promise": "^4.0.1",
|
68 | "eslint-plugin-standard": "^4.0.0",
|
69 | "jest": "^24.1.0",
|
70 | "standard": "^12.0.1",
|
71 | "winston": "^3.1.0"
|
72 | }
|
73 | }
|