-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.2 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.2 KB
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": "csv-streaming",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx nodemon --exec npx sls offline start --host 0.0.0.0",
"logs:s3listener": "npx sls logs -f s3listener -t",
"logs:sqslistener": "npx sls logs -f sqslistener -t",
"invoke:sqs": "npx sls invoke -f sqslistener --path mocks/sqs-event.json",
"invoke:s3": "npx sls invoke -f s3listener --path mocks/s3-insert.json",
"invoke:local:sqs": "npx sls invoke local -f sqslistener --path mocks/sqs-event.json",
"invoke:local:s3": "npx sls invoke local -f s3listener --path mocks/s3-insert.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/augustoscher/csv-streaming.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/augustoscher/csv-streaming/issues"
},
"homepage": "https://github.com/augustoscher/csv-streaming#readme",
"devDependencies": {
"nodemon": "^2.0.4",
"serverless": "^1.71.3",
"serverless-localstack": "^0.4.24",
"serverless-mocha-plugin": "^1.12.0",
"serverless-offline": "^6.2.0"
},
"dependencies": {
"aws-sdk": "^2.725.0",
"csvtojson": "^2.0.10"
}
}