forked from prestonvanloon/lambda-watermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1013 Bytes
/
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
{
"name": "lambda-watermark",
"version": "0.0.3",
"description": "Node service for AWS Lambda to apply watermark to S3 images",
"main": "index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/prestonvanloon/lambda-watermark.git"
},
"scripts": {
"test": "make test"
},
"config": {
"blanket": {
"pattern": "lib/",
"data-cover-never": "node_modules"
}
},
"keywords": [
"AWS",
"Lambda",
"S3",
"watermark",
"image"
],
"author": "Preston Van Loon <[email protected]>",
"analyze": true,
"license": "MIT",
"devDependencies": {
"blanket": "^1.1.7",
"coveralls": "^2.11.2",
"expect.js": "^0.3.1",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2",
"rewire": "^2.3.4",
"should": "^7.0.2",
"sinon": "^1.15.4"
},
"dependencies": {
"async": "^1.3.0",
"aws-sdk": "^2.1.36",
"gm": "^1.18.1",
"loglevel": "^1.3.1",
"object-assign": "^3.0.0"
}
}