forked from francismeynard/lambda-multipart-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 943 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": "lambda-multipart-parser",
"version": "1.0.1",
"description": "This module will parse the multipart-form containing files and fields from the lambda event object.",
"main": "index.js",
"author": "francismeynard",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/francismeynard/lambda-multipart-parser.git"
},
"homepage": "https://github.com/francismeynard/lambda-multipart-parser#readme",
"keywords": [
"aws",
"lambda",
"parser",
"multipart",
"form-data",
"formdata",
"multipart/form-data",
"multipart/formdata"
],
"dependencies": {
"busboy": "1.6.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3",
"sinon": "^6.3.1"
}
}