-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.5 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
63
64
65
{
"name": "sqs-grep",
"version": "1.18.3",
"description": "Greps AWS SQS messages from the command-line, optionally moving or deleting them",
"main": "index.js",
"bin": {
"sqs-grep": "src/main.js"
},
"scripts": {
"test": "npm run test-only && npm run build",
"test-only": "nyc mocha && eslint src/*.js",
"integration-test": "RUN_INTEGRATION_TESTS=1 npm run test-only",
"build": "cd build && ./build.sh",
"snyk-ci": "snyk test && snyk monitor",
"snyk-test": "snyk test",
"snyk-monitor": "snyk monitor"
},
"nyc": {
"include": [
"src/**"
],
"exclude": [
"src/main.js"
],
"reporter": [
"text",
"lcov"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodrigozr/sqs-grep.git"
},
"homepage": "https://github.com/rodrigozr/sqs-grep",
"keywords": [
"aws",
"sqs",
"grep",
"cli",
"commandline"
],
"author": "Rodrigo Rosauro",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-sns": "^3.726.0",
"@aws-sdk/client-sqs": "^3.726.0",
"bottleneck": "^2.19.5",
"chalk": "^4.1.2",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"n-readlines": "^1.0.3",
"node-gzip": "^1.1.2",
"password-prompt": "^1.1.3"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"mocha": "^11.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^17.1.0",
"pkg": "^5.8.1",
"sinon": "^19.0.2",
"snyk": "^1.1295.0"
}
}