forked from Turistforeningen/node-s3-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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": "s3-uploader",
"version": "1.1.0-rc.2",
"description": "Resize, rename, and upload images to AWS S3",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"hint": "jshint index.js test",
"test": "mocha test",
"watch": "mocha -bcw --check-leaks -R progress test"
},
"repository": {
"type": "git",
"url": "git://github.com/Turistforeningen/node-s3-uploader.git"
},
"keywords": [
"aws",
"s3",
"imagemagic",
"image",
"resize",
"rename",
"upload",
"versions"
],
"contributors": [
"Håvard Ranum <[email protected]>",
"Hans Kristian Flaatten <[email protected]>",
"Anthony Ringoet <[email protected]>",
"Luiz Freneda <[email protected]>",
"Oleksii Sribnyi <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Turistforeningen/node-s3-uploader/issues"
},
"homepage": "https://github.com/Turistforeningen/node-s3-uploader",
"devDependencies": {
"@starefossen/rand-path": "^1",
"mocha": "~2",
"jshint": "^2.8.0"
},
"dependencies": {
"async": "~1.4",
"aws-sdk": "^2.2.9",
"im-metadata": "^3.0.0",
"im-resize": "~2.3.1",
"node-uuid": "^1.4.3"
},
"engines": {
"node": ">=0.10",
"iojs": ">=1.0.0"
}
}