-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 986 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
{
"name": "sharp-jp2-lambda-layer",
"version": "1.0.0",
"description": "Lambda Layer providing sharp with JPEG 2000 support",
"main": "index.js",
"scripts": {
"test": "npm run lint",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"build": "sam build --use-container",
"prepackage": "node deployment/createSAMConfiguration.js > samconfig.toml",
"package": "sam package",
"predeploy": "npm run package",
"deploy": "sam deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbklein/sharp-jp2-lambda-layer.git"
},
"keywords": [],
"author": "Michael B. Klein",
"contributors": [
"Andreas Zoellner (Original Author)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mbklein/sharp-jp2-lambda-layer/issues"
},
"homepage": "https://github.com/mbklein/sharp-jp2-lambda-layer#readme",
"engines": {
"node": ">=20.3"
},
"devDependencies": {
"eslint": "^9.1.1"
}
}