-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.66 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
{
"name": "@zenvia/logger",
"version": "1.6.2",
"description": "A wrapper for Winston Logging Node.js library that formats the output on STDOUT as Logstash JSON format.",
"license": "MIT",
"main": "./src/index",
"private": false,
"publishConfig": {
"access": "public"
},
"contributors": [
"Rodrigo Kamada <rodrigo.kamada@zenvia.com> (https://github.com/rodrigokamada)"
],
"scripts": {
"test": "nyc mocha",
"test:coveralls": "nyc mocha ./test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix"
},
"homepage": "https://github.com/zenvia/zenvia-logger-node#readme",
"repository": {
"type": "git",
"url": "git@github.com:zenvia/zenvia-logger-node.git"
},
"bugs": {
"url": "https://github.com/zenvia/zenvia-logger-node/issues"
},
"keywords": [
"Logger",
"Logstash",
"Zenvia",
"Winston"
],
"dependencies": {
"app-root-dir": "^1.0.2",
"cls-rtracer": "^2.6.3",
"winston": "^3.11.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"sinon": "^9.2.0",
"sinon-chai": "^3.5.0",
"std-mocks": "^1.0.1"
},
"nyc": {
"extension": [
".js"
],
"include": [
"**/*.js"
],
"exclude": [
"**/*.spec.js",
"test",
"coverage"
],
"reporter": [
"text",
"html",
"lcov"
],
"cache": false,
"all": true
},
"directories": {
"test": "test"
}
}