-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.6 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": "cwq",
"version": "0.0.0-development",
"description": "A CLI for CloudWatch Logs Insights",
"author": "Brian Celenza",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bcelenza/aws-cwq.git"
},
"keywords": [
"insights",
"cloudwatch",
"logs"
],
"type": "commonjs",
"devDependencies": {
"@semantic-release/git": "10.0.1",
"@types/chai": "4.3.11",
"@types/json2csv": "5.0.7",
"@types/json2md": "1.5.4",
"@types/mocha": "10.0.6",
"@types/node": "22.0.0",
"@types/parse-duration": "0.3.0",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "7.0.0",
"@typescript-eslint/parser": "6.21.0",
"chai": "4.3.10",
"chai-as-promised": "7.1.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"mocha": "10.3.0",
"nyc": "15.1.0",
"semantic-release": "^23.0.8",
"ts-mockito": "2.6.1",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "3.623.0",
"json2csv": "5.0.6",
"json2md": "2.0.1",
"parse-duration": "1.1.0",
"yargs": "17.7.2"
},
"files": [
"/bin",
"/dist"
],
"main": "./dist/index.js",
"bin": {
"cwq": "./bin/cwq"
},
"scripts": {
"build": "tsc",
"test": "nyc --exclude src/test --reporter text --reporter lcov mocha --full-trace --require ts-node/register/transpile-only test/**/*.ts",
"semantic-release": "semantic-release"
}
}