-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
37 lines (37 loc) · 936 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
{
"name": "bunyan-cloudwatch",
"version": "2.2.0",
"description": "Writable stream to write bunyan logs to AWS CloudWatch",
"homepage": "https://github.com/mirkokiefer/bunyan-cloudwatch",
"repository": "git://github.com/mirkokiefer/bunyan-cloudwatch.git",
"main": "index.js",
"scripts": {
"test": "mocha test/index && npm run lint",
"e2e-test": "mocha -t 60000 test/e2e",
"lint": "eslint ."
},
"keywords": [
"aws",
"cloudwatch",
"logs",
"bunyan"
],
"author": "Mirko Kiefer <mail@mirkokiefer.com>",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1.33"
},
"optionalDependencies": {
"safe-json-stringify": "^1.0.3"
},
"devDependencies": {
"bunyan": "^2.0.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"mocha": "^2.2.5",
"proxyquire": "^1.5.0",
"safe-json-stringify": "^1.0.4",
"sinon": "^1.14.1",
"uuid": "^2.0.1"
}
}