UNPKG

1.91 kBJSONView Raw
1{
2 "name": "winston-loki",
3 "version": "6.0.1",
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 "types": "index.d.ts",
19 "scripts": {
20 "build:proto": "./node_modules/.bin/pbjs -t static-module -w commonjs -o ./src/proto/index.js ./src/proto/logproto.proto && npm run lint:fix",
21 "test": "./node_modules/.bin/standard && ./node_modules/.bin/jest",
22 "lint": "./node_modules/.bin/eslint *",
23 "lint:fix": "./node_modules/.bin/standard --fix",
24 "coverage": "jest --coverage",
25 "coveralls": "jest --coverage && cat ./test/coverage/lcov.info | coveralls"
26 },
27 "standard": {
28 "env": {
29 "node": true,
30 "jest": true
31 },
32 "ignore": [
33 "test/coverage",
34 "src/proto/index.js"
35 ]
36 },
37 "jest": {
38 "coverageDirectory": "./test/coverage",
39 "coveragePathIgnorePatterns": [
40 "./node_modules/",
41 "./test/",
42 "./src/proto/index.js"
43 ]
44 },
45 "author": "Jani Anttonen",
46 "license": "MIT",
47 "repository": {
48 "type": "git",
49 "url": "https://github.com/JaniAnttonen/winston-loki.git"
50 },
51 "dependencies": {
52 "async-exit-hook": "2.0.1",
53 "btoa": "^1.2.1",
54 "protobufjs": "^6.8.8",
55 "winston-transport": "^4.3.0"
56 },
57 "optionalDependencies": {
58 "snappy": "^6.1.1"
59 },
60 "devDependencies": {
61 "coveralls": "^3.0.2",
62 "eslint": "^5.12.0",
63 "eslint-config-prettier": "^3.6.0",
64 "eslint-config-standard": "^12.0.0",
65 "eslint-plugin-import": "^2.14.0",
66 "eslint-plugin-node": "^8.0.1",
67 "eslint-plugin-prettier": "^3.0.1",
68 "eslint-plugin-promise": "^4.0.1",
69 "eslint-plugin-standard": "^4.0.0",
70 "jest": "^24.1.0",
71 "standard": "^12.0.1",
72 "winston": "^3.1.0"
73 }
74}