-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "winston-logsene",
"version": "2.1.2",
"description": "Winston transport layer for Logsene",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"bundle": "browserify -r ./lib/index.js:winston-logsene > bundle.js",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/sematext/winston-logsene.git"
},
"keywords": [
"Logsene",
"sematext",
"elasticsearch",
"ELK",
"logger",
"log management",
"logging saas",
"centralized logging",
"winston"
],
"author": "Sematext",
"contributors": [],
"license": "Apache 2",
"bugs": {
"url": "https://github.com/sematext/winston-logsene/issues"
},
"homepage": "https://www.sematext.com",
"dependencies": {
"logsene-js": "^1.1.76",
"winston": "^3.2.1",
"winston-compat": "^0.1.5",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.2.2",
"mocha": "^10.1.0",
"release-it": "^15.5.1"
},
"release-it": {
"github": {
"release": true,
"tokenRef": "RELEASE_IT_GITHUB_TOKEN",
"releaseNotes": "npx auto-changelog --stdout --commit-limit false -u --template ./changelog.hbs"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
}
},
"standard": {
"parser": "babel-eslint"
}
}