UNPKG

1.91 kBJSONView Raw
1{
2 "name": "winston-loki",
3 "version": "5.1.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 "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 "src/proto/index.js"
34 ]
35 },
36 "jest": {
37 "coverageDirectory": "./test/coverage",
38 "coveragePathIgnorePatterns": [
39 "./node_modules/",
40 "./test/",
41 "./src/proto/index.js"
42 ]
43 },
44 "author": "Jani Anttonen",
45 "license": "MIT",
46 "repository": {
47 "type": "git",
48 "url": "https://github.com/JaniAnttonen/winston-loki.git"
49 },
50 "dependencies": {
51 "async-exit-hook": "2.0.1",
52 "got": "^9.5.0",
53 "moment": "^2.24.0",
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}