forked from HoraceShmorace/Image-Flex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.3 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
{
"name": "image-flex",
"version": "1.0.0",
"description": "A robust, secure, and easily deployable image resizing service that scales, optimizes, and caches images on \"the edge,\" on the fly. Served by CloudFront via an Origin Access Identity. Executed on Lambda@Edge. Backed by S3. Protected by AWS WAF. Provisioned via CloudFormation. Built and deployed by the Serverless Application Model (SAM) CLI.",
"scripts": {
"setup": "bash -c './bin/setup.sh $npm_package_name $0 $1'",
"meta": "bash -c './bin/meta.sh $npm_package_name $0 $1 $2'",
"build": "bash -c './bin/build.sh'",
"package": "bash -c './bin/package.sh $npm_package_name $0 $1'",
"deploy": "bash -c './bin/deploy.sh $npm_package_name $0 $1 $2'",
"update": "bash -c './bin/update.sh $npm_package_name $0 $1 $2'",
"lint": "standardx --fix \"functions/**/*.js\"",
"test": "jest"
},
"author": "@HoraceShmorace",
"license": "CC BY-SA",
"repository": {
"url": "https://github.com/HoraceShmorace/Image-Flex.git"
},
"devDependencies": {
"husky": "^5.0.9",
"jest": "^26.6.3",
"standardx": "^5.0.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm test"
}
},
"eslintConfig": {
"env": {
"jest": true,
"node": true
}
},
"jest": {
"rootDir": "./src"
}
}