UNPKG

serverless-s3-cleaner

Version:

Serverless Framework plugin that empties S3 buckets before removing a stack

58 lines (57 loc) 1.71 kB
{ "name": "serverless-s3-cleaner", "version": "2.0.2", "description": "Serverless Framework plugin that empties S3 buckets before removing a stack", "main": "dist/index.js", "scripts": { "prebuild": "npm run lint", "build": "tsc --b tsconfig.app.json", "lint": "eslint \"**/*.ts\" --ignore-path .gitignore", "clean": "rimraf out-tsc", "pretest:build": "npm run clean", "test:build": "tsc --b tsconfig.spec.json", "test:exec": "jasmine --config=jasmine.json", "test": "npm run test:build && nyc npm run test:exec", "test:cov": "npm run test:build && nyc --reporter=html --reporter=text-summary npm run test:exec" }, "repository": { "type": "git", "url": "git+https://github.com/coyoteecd/serverless-s3-cleaner.git" }, "keywords": [ "serverless", "serverless-plugin", "aws", "git" ], "author": "coyoteecd", "license": "MIT", "bugs": { "url": "https://github.com/coyoteecd/serverless-s3-cleaner/issues" }, "homepage": "https://github.com/coyoteecd/serverless-s3-cleaner#readme", "devDependencies": { "@types/jasmine": "^4.3.1", "@types/node": "^16.18.6", "@types/prompt": "^1.1.4", "@types/serverless": "^3.12.9", "@typescript-eslint/eslint-plugin": "^5.46.0", "@typescript-eslint/parser": "^5.46.0", "ajv": "^8.11.2", "aws-sdk": "^2.1270.0", "eslint": "^8.29.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-plugin-import": "^2.26.0", "jasmine": "^4.5.0", "nyc": "^15.1.0", "rimraf": "^3.0.2", "serverless": "^3.25.1", "typescript": "^4.9.4" }, "peerDependencies": { "serverless": "^3.0.0" }, "dependencies": { "prompt": "^1.3.0" } }