-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 739 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 739 Bytes
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
{
"name": "csv-receiver",
"version": "0.0.0",
"description": "A small Lambda app that receives a CSV and pushes its row content as messages to SNS",
"main": "csvReceiver.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --recursive test"
},
"repository": {
"type": "git",
"url": "https://github.com/gilt/csv-receiver"
},
"keywords": [
"lambda",
"csv",
"sns"
],
"author": "Ryan Martin",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/gilt/csv-receiver/issues"
},
"dependencies": {
"aws-sdk": "2.x",
"bluebird": "3.x",
"csv": "0.x"
},
"devDependencies": {
"aws-lambda-mock-context": "^1.1.0",
"sinon": "^1.17.3"
}
}