forked from bcoe/thumbd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.13 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
84
85
86
87
88
89
90
91
92
{
"name": "thumbd",
"version": "2.17.0",
"directories": {
"bin": "./bin",
"data": "./data",
"lib": "./lib"
},
"main": "./lib/index.js",
"bin": "./bin/thumbd.js",
"author": "Ben Coe <bencoe@gmail.com>",
"engines": {
"node": "0.10.29"
},
"config": {
"blanket": {
"data-cover-never": [
"node_modules",
"test"
],
"output-reporter": "spec",
"pattern": "lib"
}
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"start": "./bin/thumbd.js server",
"pretest": "standard",
"test": "nyc mocha"
},
"description": "Node.js/AWS/ImageMagick-based image thumbnailing service.",
"keywords": [
"image",
"imagemagick",
"processing",
"sqs",
"thumbnail"
],
"service": {
"env": {
"AWS_KEY": {
"description": "What is your AWS Key (used by SQS and S3)"
},
"AWS_REGION": {
"default": "us-east-1",
"description": "Default AWS region for SQS and S3."
},
"AWS_SECRET": {
"description": "What is your AWS secret (used by SQS and S3)"
},
"BUCKET": {
"description": "What S3 bucket would you like to store converted thumbnails in"
},
"CONVERT_COMMAND": {
"default": "/usr/local/bin/convert",
"description": "Absolute path to ImageMagick bin"
},
"SQS_QUEUE": {
"description": "What SQS queue should thumbd fetch work from"
},
"TMP_DIR": {
"default": "/tmp",
"description": "what folder should thumbd use for temporary files"
}
}
},
"repository": {
"type": "git",
"url": "git://github.com/bcoe/thumbd.git"
},
"dependencies": {
"async": "^0.9.0",
"aws-sdk": "^2.1.18",
"knox": "^0.9.2",
"lodash": "^3.3.1",
"ndm": "^3.3.1",
"request": "^2.40.0",
"sprintf-js": "^1.0.2",
"tmp": "~0.0.16",
"yargs": "^3.4.5"
},
"devDependencies": {
"blanket": "^1.1.6",
"coveralls": "^2.11.3",
"look": "^0.1.3",
"mocha": "^2.2.5",
"nock": "^2.9.1",
"nyc": "^3.0.1",
"sinon": "^1.12.2",
"standard": "^4.5.4"
}
}