-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 972 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
{
"name": "smoketail",
"version": "0.2.1",
"description": "Library and utility for tailing AWS CloudWatch Logs.",
"main": "index.js",
"bin": {
"smoketail": "./bin/smoketail.js"
},
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "git://github.com/howardengelhart/smoketail.git"
},
"keywords": [
"aws",
"cloudwatch",
"logs",
"cloudwatchlogs",
"tail"
],
"author": "Howard Engelhart",
"license": "MIT",
"bugs": {
"url": "https://github.com/howardengelhart/smoketail/issues"
},
"homepage": "https://github.com/howardengelhart/smoketail",
"dependencies": {
"q": "^1.4.1",
"aws-sdk": "^2.2.14",
"commander": "~2.9.0"
},
"devDependencies": {
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-watch": "^0.6.1",
"grunt": "^0.4.5",
"jshint": "^2.8.0",
"jasmine": "^2.3.2",
"jasmine-reporters": "^2.0.7",
"load-grunt-config": "^0.19.0"
}
}