-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "grunt-s3",
"description": "A grunt task to automate moving files to/from Amazon S3.",
"version": "0.2.0-alpha.3",
"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": "tasks/s3",
"bin": "bin/grunt-s3",
"scripts": {
"test": "grunt test",
"fakes3": "fakes3 -r s3 -p 1337"
},
"engines": {
"node": ">= 0.10.0"
},
"keywords": [
"gruntplugin",
"amazon",
"s3"
],
"dependencies": {
"grunt": "0.4.x",
"underscore.deferred": "~0.1.4",
"knox": "0.8.x",
"mime": "~1.2.5",
"temporary": "0.0.8"
},
"devDependencies": {
"nodeunit": "~0.7.4",
"grunt-contrib-jshint": "~0.11.3",
"grunt-contrib-nodeunit": "~0.1.1",
"libyaml": "~0.2.1",
"grunt-contrib-clean": "~0.5.0",
"rimraf": "~2.2.2"
}
}