forked from Turistforeningen/node-s3-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "s3-uploader",
"version": "1.0.0-rc.10",
"description": "Resize, rename, and upload images to AWS S3",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "coffee -c -b -o lib/ src/*.coffee",
"prepublish": "coffee -c -b -o lib/ src/*.coffee",
"postpublish": "rm -rf lib/*",
"hint": "coffeelint src test",
"test": "mocha --compilers coffee:coffee-script/register test/suite.coffee",
"watch": "mocha -w -b -c --check-leaks -R progress --compilers coffee:coffee-script/register test/suite.coffee"
},
"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]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Turistforeningen/node-s3-uploader/issues"
},
"homepage": "https://github.com/Turistforeningen/node-s3-uploader",
"devDependencies": {
"coffee-script": "~1",
"coffeelint": "~1",
"mocha": "~2"
},
"dependencies": {
"async": "~1.2",
"aws-sdk": "~2.1",
"im-resize": "~2.2",
"im-metadata": "~2.2"
},
"engines": {
"node": ">=0.10",
"iojs": ">=1.0.0"
}
}