-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 966 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 966 Bytes
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
{
"name": "ymir-image-processing",
"version": "1.0.0",
"author": "Carl Alexander",
"description": "Ymir Lambda@Edge function used to with CloudFront to make an image processing proxy",
"license": "MIT",
"main": "index.js",
"dependencies": {
"animated-gif-detector": "^1.2.0",
"sharp": "^0.34"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.433.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"prettier": "^3.1.0"
},
"scripts": {
"build-zip": "rm ymir-image-processing.zip; zip -r ymir-image-processing.zip ./node_modules/ index.js",
"calculate-sha": "openssl dgst -sha256 -binary ymir-image-processing.zip | openssl enc -base64",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"update": "npm update --os=linux --cpu=x64"
}
}