fh-serverless
Version:
A Node.js CLI for optimizing and generating configuration files for Serverless projects
79 lines (78 loc) • 2 kB
JSON
{
"name": "fh-serverless",
"version": "2.1.0",
"description": "A Node.js CLI for optimizing and generating configuration files for Serverless projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"fh-serverless": "dist/index.js"
},
"scripts": {
"test": "jest",
"format": "eslint . --fix --quiet && prettier --check --write '**/*.js*'",
"check": "eslint . && prettier --check '**/*.js*'",
"build": "tsc",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"CLI",
"Serverless",
"AWS Lambda",
"Optimization",
"Configuration file",
"esbuild",
"Lambda functions",
"Package",
"Build",
"Open-source",
"JavaScript",
"Github",
"Development",
"Deployment",
"Automation",
"Code optimization",
"Command-line",
"Tool"
],
"author": {
"name": "Leandro Ferreira",
"email": "leandro.daf4@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3"
},
"dependencies": {
"commander": "^10.0.0",
"deepmerge": "^4.3.1",
"esbuild": "^0.17.15",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"pino": "^8.11.0",
"pino-pretty": "^10.0.0",
"serverless": "^3.29.0",
"zod": "^3.21.4"
}
}