forked from avens19/winston-sumologic-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "winston-sumologic-transport",
"description": "A Winston transport for SumoLogic",
"version": "0.0.0",
"author": {
"name": "Andrew Ovens",
"email": "[email protected]"
},
"homepage": "https://github.com/avens19/winston-sumologic-transport",
"repository": {
"type": "git",
"url": "git://github.com/avens19/winston-sumologic-transport.git"
},
"typings": "./lib/winston-sumologic-transport.d.ts",
"keywords": [
"logging",
"sysadmin",
"tools",
"winston",
"nodejs",
"sumologic",
"sumo"
],
"dependencies": {
"request": "^2.83.0",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@types/request": "^2.0.9",
"chai": "^4.1.2",
"eslint": "^4.16.0",
"eslint-config-strict": "^14.0.1",
"eslint-plugin-mocha": "^4.11.0",
"logform": "^2.1.2",
"mocha": "^5.0.0",
"nock": "^9.1.6",
"promise-mock": "^2.0.1",
"sinon": "^4.1.6",
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"typescript": "^3.3.3333",
"winston": "^3.2.1"
},
"main": "./lib/winston-sumologic-transport",
"scripts": {
"eslint": "eslint test",
"pretest": "node_modules/.bin/tsc",
"test": "mocha test",
"tslint": "tslint --project tsconfig.json --config tslint.json"
}
}