forked from winstonjs/node-loggly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 772 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 772 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": "loggly",
"description": "A client implementation for Loggly cloud Logging-as-a-Service API",
"version": "1.1.0",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"repository": {
"type": "git",
"url": "http://github.com/winstonjs/node-loggly.git"
},
"keywords": [
"cloud computing",
"api",
"logging",
"loggly"
],
"dependencies": {
"request": "2.69.x",
"timespan": "2.3.x",
"json-stringify-safe": "5.0.x"
},
"devDependencies": {
"common-style": "^3.1.0",
"vows": "0.8.x"
},
"main": "./lib/loggly",
"scripts": {
"pretest": "common lib/**/*.js lib/*.js test/helpers.js",
"test": "vows test/*-test.js --spec"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
}
}