-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
34 lines (34 loc) · 965 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
33
34
{
"name": "s3-lambda",
"version": "5.1.8",
"description": "Lambda functions over S3 objects with concurrency control (forEach, map, reduce, filter)",
"main": "index.js",
"author": "Wells Johnston",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/littlstar/s3-lambda"
},
"scripts": {
"test": "node test",
"lint": "node_modules/.bin/eslint . --fix --ignore-path test/index.js",
"validate": "node_modules/.bin/eslint . --ignore-path test/index.js"
},
"dependencies": {
"aws-sdk": "^2.2.31",
"batch": "^0.5.3",
"mock-aws-s3": "^2.1.0",
"progress": "^1.1.8"
},
"devDependencies": {
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4",
"tape": "^4.4.0"
}
}