-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "aws-s3-form",
"version": "0.3.5",
"description": "Generate a signed and reday to use formdata to put files to s3 directly from teh browser. Signing is done by using AWS Signature Version 4 ",
"keywords": [
"aws",
"s3",
"sign",
"signature",
"v4",
"form",
"browser",
"post",
"client"
],
"homepage": "https://github.com/mpneuried/aws-s3-form",
"bugs": "https://github.com/mpneuried/aws-s3-form/issues",
"author": {
"name": "mpneuried",
"email": "",
"url": "https://github.com/aws-s3-form"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/mpneuried/aws-s3-form.git"
},
"scripts": {
"test": "grunt test-travis"
},
"engines": {
"node": ">= 0.10.0"
},
"license": "MIT",
"dependencies": {
"lodash": "4.x",
"mime-nofs": "2.x",
"mpbasic": "0.0.x",
"node-uuid": ">= 1.4.4"
},
"devDependencies": {
"request": "2.x",
"should": "8.x",
"grunt": "1.0.x",
"grunt-contrib-watch": "1.x",
"grunt-contrib-coffee": "1.x",
"grunt-include-replace": "4.0",
"grunt-mocha-cli": "2.x",
"grunt-docker": "0.0.x",
"grunt-contrib-clean": "1.x",
"crypto-js": "3.x",
"xml2js": "0.4.x",
"express": "4.x",
"jade": "1.x"
}
}