-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
56 lines (56 loc) · 1.22 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": "grunt-aws-s3",
"description": "Interact with AWS S3 using the AWS SDK",
"version": "2.0.2",
"homepage": "https://github.com/MathieuLoutre/grunt-aws-s3",
"author": {
"name": "Mathieu Triay",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/MathieuLoutre/grunt-aws-s3.git"
},
"bugs": {
"url": "https://github.com/MathieuLoutre/grunt-aws-s3/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/MathieuLoutre/grunt-aws-s3/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"pretest": "./scripts/create_fixtures.sh",
"test": "grunt"
},
"dependencies": {
"aws-sdk": "2.0.x",
"mime-types": "2.0.x",
"lodash": "4.17.x",
"async": "0.9.x",
"progress": "1.1.x"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.2.0",
"grunt": "~0.4.0",
"chai": "~1.7.2",
"mocha": "~1.12.1",
"grunt-mocha-test": "~0.10.2",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-clean": "~0.5.0",
"mock-aws-s3": "2.5.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin",
"aws",
"s3",
"sdk"
]
}