forked from winstonjs/node-loggly
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 764 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 764 Bytes
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
{
"name": "node-loggly-bulk",
"description": "A client implementation for Loggly cloud Logging-as-a-Service API",
"version": "4.0.2",
"author": "Charlie Robbins <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/loggly/node-loggly-bulk.git"
},
"keywords": [
"cloud computing",
"api",
"logging",
"loggly"
],
"dependencies": {
"axios": "1.7.4",
"json-stringify-safe": "5.0.x",
"moment": "2.29.4"
},
"devDependencies": {
"eslint": "^8.2.0",
"jest": "29.5.0"
},
"main": "./lib/loggly",
"scripts": {
"lint": "eslint --max-warnings 0 --ext lib/**/*.js lib/*.js --fix",
"test": "jest"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
}
}