-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
43 lines (43 loc) · 892 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
35
36
37
38
39
40
41
42
43
{
"name": "s3-upload",
"version": "0.1.0",
"description": "Allows you to upload static files to S3 buckets.",
"main": "main.js",
"bin": {
"s3-upload": "./bin/s3-upload.js"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/jamestalmage/s3-static-site-uploader.git"
},
"keywords": [
"Amazon",
"S3",
"Node",
"Upload",
"Static"
],
"author": "James Talmage",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamestalmage/s3-static-site-uploader/issues"
},
"dependencies": {
"aws-sdk": "^2.1.17",
"crypto": "0.0.3",
"glob": "~3.2.1",
"mime": "~1.2.9",
"q": "~0.9.6"
},
"devDependencies": {
"chai": "~1.7.1",
"chai-things": "~0.2.0",
"mocha": "^2.3.3",
"promise-testing": "0.0.12",
"sinon": "~1.7.3",
"sinon-chai": "~2.4.0"
}
}