-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 820 Bytes
/
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
{
"name": "lambda-kinesis-bigquery",
"description": "AWS Lambda function for insert Kinesis event to Google BigQuery",
"version": "1.0.0",
"bugs": {
"url": "https://github.com/hakobera/lambda-kinesis-bigquery/issues"
},
"dependencies": {
"gcloud": "^0.28.0",
"lodash": "^4.13.1"
},
"devDependencies": {
"aws-sdk": "^2.1.23",
"mocha": "^2.0.1",
"should": "^4.4.1",
"sinon": "^1.12.2"
},
"homepage": "https://github.com/hakobera/lambda-kinesis-bigquery",
"keywords": [
"kinesis",
"bigquery"
],
"license": "MIT",
"main": "KinesisBigQuery.js",
"repository": {
"type": "git",
"url": "ssh://[email protected]/hakobera/lambda-kinesis-bigquery.git"
},
"scripts": {
"test": "./test/setup.sh && mocha --reporter spec --bail --check-leaks test/"
}
}