website-deploy
Version:
A simple utility to deploy a static website to [s3-bucket, lambda, ...]
65 lines (64 loc) • 1.67 kB
JSON
{
"name": "website-deploy",
"version": "3.0.0",
"description": "A simple utility to deploy a static website to [s3-bucket, lambda, ...]",
"main": "index.js",
"keywords": [
"aws",
"s3",
"lambda",
"static",
"website",
"deploy",
"node",
"cli"
],
"author": "Rishikesh Darandale <Rishikesh.Darandale@gmail.com>",
"homepage": "https://rishikeshdarandale.github.io/website-deploy/",
"bugs": {
"url": "https://github.com/RishikeshDarandale/website-deploy/issues",
"email": "Rishikesh.Darandale@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/RishikeshDarandale/website-deploy"
},
"license": "MIT",
"dependencies": {
"@aws-sdk/client-cloudfront": "^3.828.0",
"@aws-sdk/client-lambda": "^3.828.0",
"@aws-sdk/client-s3": "^3.828.0",
"@aws-sdk/credential-providers": "^3.828.0",
"aws-sdk": "^2.1443.0",
"bestzip": "^2.2.1",
"chalk": "^4.1.2",
"clear": "^0.1.0",
"clui": "^0.3.6",
"commander": "^14.0.0",
"figlet": "^1.8.1",
"mime": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.28.0",
"eslint": "^9.28.0",
"eslint-config-google": "^0.14.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3"
},
"engines": {
"node": ">=8.11.2",
"npm": ">=5.6.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" ",
"pretest": "prettier --check . && eslint --quiet .",
"lint": "eslint",
"prepare": "husky"
},
"bin": {
"website-deploy": "./commands/website-deploy"
}
}