-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "s3-db",
"version": "1.0.0",
"description": "Testing S3 as a read-only database with potentially thousands of simultaneous queries.",
"main": "run-data.js",
"scripts": {
"start": "node run-data.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/royhobbstn/s3-db.git"
},
"author": "Daniel Trone",
"license": "ISC",
"bugs": {
"url": "https://github.com/royhobbstn/s3-db/issues"
},
"homepage": "https://github.com/royhobbstn/s3-db#readme",
"dependencies": {
"aws-sdk": "^2.259.1",
"awscred": "^1.4.1",
"bluebird": "^3.5.1",
"csvtojson": "^1.1.9",
"express": "^4.16.3",
"papaparse": "^4.3.6",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"requestretry": "^1.13.0",
"rimraf": "^2.6.2",
"s3-list-all": "^1.0.0",
"serverless-http": "^1.5.5",
"unzipper": "^0.8.14",
"yargs": "^10.0.3"
},
"devDependencies": {
"serverless": "^1.27.3",
"serverless-offline": "^3.25.4"
}
}