-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cloudwatch-tail",
"version": "1.0.24",
"description": "CLI Utility for Watching AWS CloudWatch Logs.",
"repository": "jfollmann/cloudwatch-tail",
"author": {
"name": "Jefferson Follmann",
"email": "jeff.follmann@gmail.com",
"url": "https://jfollmann.com"
},
"engines": {
"node": ">=10"
},
"bin": {
"cw": "src/rerun.js",
"cwt": "src/run.js"
},
"keywords": [
"cloud-watch",
"cloud watch",
"cli",
"tail",
"task",
"unix",
"terminal"
],
"scripts": {
"start": "node src/run.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"publish": "npm publish --access public",
"prepare": "husky install",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:staged": "npm t -- --findRelatedTests",
"test:watch": "npm t -- --watch",
"test:coverage": "npm t -- --coverage"
},
"license": "ISC",
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.470.0",
"@aws-sdk/credential-providers": "^3.470.0",
"aws-regions": "^2.3.1",
"commander": "^9.1.0",
"inquirer": "^8.2.2",
"inquirer-fuzzy-path": "^2.3.0",
"loading-cli": "^1.1.0",
"lru-cache-fs": "^2.0.1",
"simple-output": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"aws-sdk-mock": "^5.6.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7"
}
}