forked from logzio/logzio-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1005 Bytes
/
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
{
"name": "logzio-nodejs",
"description": "A nodejs implementation for sending logs to Logz.IO cloud service",
"version": "0.3.6",
"author": "Gilly Barr <[email protected]>",
"contributors": [
{
"name": "Gilly Barr",
"email": "[email protected]"
},
{
"name": "Asaf Mesika",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/logzio/logzio-nodejs.git"
},
"keywords": [
"cloud computing",
"log analytics",
"api",
"logging",
"logzio"
],
"dependencies": {
"json-stringify-safe": "5.0.x",
"lodash": "^3.10.1",
"request": "2.68.0"
},
"devDependencies": {
"assert": "^1.3.0",
"async": "1.4.2",
"mocha": "^2.3.3",
"nock": "^2.13.0",
"should": "^7.1.0",
"sinon": "^1.17.1"
},
"main": "./lib/logzio-nodejs",
"engines": {
"node": ">= 0.8.0"
},
"license": "(Apache-2.0)",
"scripts": {
"test": "node_modules/.bin/mocha -w"
}
}