-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "logdna-agent",
"version": "2.2.2",
"description": "LogDNA Agent streams from log files to your LogDNA account. Works with Linux, Windows, and macOS Servers",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "tap"
},
"repository": {
"type": "git",
"url": "https://github.com/logdna/logdna-agent.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/logdna/logdna-agent/issues"
},
"homepage": "https://github.com/logdna/logdna-agent",
"eslintConfig": {
"root": true,
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"extends": [
"logdna"
],
"parserOptions": {
"ecmaVersion": 2019
}
},
"dependencies": {
"@logdna/logger": "^2.2.2",
"@logdna/tail-file": "^2.2.0",
"async": "^3.2.0",
"commander": "^4.1.1",
"debug": "^4.1.1",
"getos": "^3.1.4",
"glob": "^7.1.6",
"is-administrator": "^1.0.1",
"properties": "^1.2.1",
"request": "^2.88.2",
"split2": "^4.1.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-logdna": "^6.1.0",
"nock": "^13.0.4",
"tap": "^14.10.8"
}
}