-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 868 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
{
"name": "lambda-image-converter",
"version": "1.0.0",
"description": "image converter that runs on aws lambda",
"main": "handler.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fix": "eslint --fix --ext .js --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/romukey/lambda-image-converter.git"
},
"author": "romukey",
"license": "ISC",
"bugs": {
"url": "https://github.com/romukey/lambda-image-converter/issues"
},
"homepage": "https://github.com/romukey/lambda-image-converter#readme",
"dependencies": {
"sharp": "0.23.0"
},
"devDependencies": {
"eslint": "6.3.0",
"eslint-config-prettier": "6.2.0",
"eslint-plugin-prettier": "3.1.0",
"npm-check-updates": "3.1.21",
"prettier": "1.18.2",
"serverless": "1.51.0"
}
}