forked from Turistforeningen/node-s3-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "s3-uploader",
"version": "0.8.2",
"description": "Resize, rename, and upload images to AWS S3",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "coffee --bare --compile --output lib/ src/*.coffee",
"prepublish": "coffee --bare --compile --output lib/ src/*.coffee",
"postpublish": "rm -rf lib/*",
"test": "mocha test/suite.coffee -R spec --compilers coffee:coffee-script/register,litcoffee:coffee-script/register",
"watch": "./node_modules/.bin/mocha -w -b -c --check-leaks test/suite.coffee -R progress --compilers coffee:coffee-script/register,litcoffee:coffee-script/register"
},
"repository": {
"type": "git",
"url": "git://github.com/Turistforeningen/node-s3-uploader.git"
},
"keywords": [
"aws",
"s3",
"imagemagic",
"image",
"resize",
"rename",
"upload"
],
"contributors": [
"Håvard Ranum <havard.ranum@bouvet.no>",
"Hans Kristian Flaatten <hans.kristian.flaatten@turistforeningen.no>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Turistforeningen/node-s3-uploader/issues"
},
"homepage": "https://github.com/Turistforeningen/node-s3-uploader",
"devDependencies": {
"coffee-script": "~1.9.1",
"mocha": "~2.2.1"
},
"dependencies": {
"async": "~1.2",
"aws-sdk": "~2.1",
"depd": "~1.0",
"gm": "~1.18"
},
"engines": {
"node": ">=0.10 <0.12"
}
}