This repository has been archived by the owner on May 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.09 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "node-s3-utils",
"description": "Utilities for managing AWS resources (e.g.: converting/resizing images stored in S3 folders)",
"version": "0.4.1",
"homepage": "https://github.com/sphereio/node-s3-utils",
"author": {
"name": "Sven Mueller",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Nicola Molinari",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/sphereio/node-s3-utils.git"
},
"bugs": {
"url": "https://github.com/sphereio/node-s3-utils/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sphereio/node-s3-utils/blob/master/LICENSE-MIT"
}
],
"main": "lib/s3utils",
"engines": {
"node": ">= 0.10.x"
},
"bin" : {
"s3utils" : "./bin/s3utils",
"s3utils-files" : "./bin/s3utils-files",
"s3utils-files-list" : "./bin/s3utils-files-list",
"s3utils-files-delete" : "./bin/s3utils-files-delete",
"s3utils-files-upload" : "./bin/s3utils-files-upload",
"s3utils-images" : "./bin/s3utils-images",
"s3utils-images-convert" : "./bin/s3utils-images-convert"
},
"scripts": {
"test": "grunt coverage"
},
"dependencies": {
"bluebird": "2.3.2",
"commander": "2.3.0",
"debug": "2.0.0",
"easyimage": "1.0.2",
"imagemin": "4.0.0",
"knox": "0.9.1",
"lynx": "0.2.0",
"pkginfo": "0.3.0",
"progress": "1.1.8",
"tmp": "0.0.23",
"underscore": "1.7.0",
"winston": "0.7.x"
},
"devDependencies": {
"coveralls": "2.10.0",
"grunt": "0.4.4",
"grunt-bump": "0.0.13",
"grunt-cli": "0.1.13",
"grunt-coffeelint": "0.0.8",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-coffee": "0.10.0",
"grunt-contrib-concat": "0.4.0",
"grunt-contrib-watch": "0.6.1",
"grunt-shell": "0.6.4",
"istanbul": "0.2.4",
"jasmine-node": "1.13.1",
"sphere-coffeelint": "git://github.com/sphereio/sphere-coffeelint.git#master"
},
"keywords": [
"s3",
"aws",
"upload",
"delete",
"images",
"resize",
"utils"
]
}