forked from pifantastic/grunt-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 986 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
44
{
"name": "grunt-s3",
"description": "A grunt task to automate moving files to/from Amazon S3.",
"version": "0.0.9-patch2",
"author": "Aaron Forsander (https://github.com/pifantastic)",
"homepage": "https://github.com/pifantastic/grunt-s3",
"repository": {
"type": "git",
"url": "git://github.com/pifantastic/grunt-s3.git"
},
"bugs": {
"url" : "https://github.com/pifantastic/grunt-s3/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/pifantastic/grunt-s3/blob/master/LICENSE"
}
],
"main": "grunt.js",
"bin": "bin/grunt-s3",
"scripts": {
"test": "grunt test"
},
"engines": {
"node": ">= 0.6.0"
},
"keywords": [
"gruntplugin",
"amazon",
"s3"
],
"dependencies": {
"grunt": "~0.3.9",
"async": "~0.1.18",
"underscore": "~1.3.3",
"underscore.deferred": "~0.1.4",
"knox": "0.4.1",
"mime": "~1.2.5"
},
"devDependencies": {
"nodeunit": "~0.7.4"
}
}