UNPKG

serverless-plugin-test-helper

Version:

A utility library to help with testing deployed serverless applications

80 lines (79 loc) 2.41 kB
{ "name": "serverless-plugin-test-helper", "description": "A utility library to help with testing deployed serverless applications", "version": "2.6.4", "scripts": { "publish-please-dry-run": "publish-please --dry-run", "publish-please": "publish-please", "prepublishOnly": "publish-please guard && npm run build", "build": "rimraf dist && tsc -p ./tsconfig.build.json", "postbuild": "ncp src/index.d.ts dist/index.d.ts", "test": "jest --coverage", "pretest": "rimraf .test-output .serverless dist", "posttest": "rimraf .test-output .serverless .test*", "codecov": "codecov -f coverage/*.json", "testexamples-custom-ts": "cd examples/custom-ts && rm -rf node_modules package-lock.json && npm i && npm run deploy-and-test-and-remove" }, "dependencies": { "deepmerge": "^4.2.2", "js-yaml": "^4.1.0" }, "devDependencies": { "@babel/core": "^7.14.3", "@babel/plugin-proposal-class-properties": "^7.13.0", "@babel/preset-env": "^7.14.2", "@babel/preset-typescript": "^7.13.0", "@types/aws-lambda": "^8.10.76", "@types/jest": "^26.0.23", "@types/lodash": "^4.14.170", "@types/lodash.clonedeep": "^4.5.6", "@types/node": "^15.6.1", "@typescript-eslint/eslint-plugin": "^4.25.0", "@typescript-eslint/parser": "^4.25.0", "babel-jest": "^27.0.1", "codecov": "^3.8.2", "eslint": "^7.27.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^3.4.0", "husky": "^6.0.0", "jest": "^27.0.1", "lint-staged": "^11.0.0", "lodash.clonedeep": "^4.5.0", "ncp": "^2.0.0", "prettier": "^2.3.0", "publish-please": "^5.5.2", "rimraf": "^3.0.2", "ts-jest": "^27.0.0", "typescript": "^4.2.4" }, "lint-staged": { "./src/**/*.ts": [ "eslint --fix" ] }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/manwaring/serverless-plugin-test-helper.git" }, "bugs": { "url": "https://github.com/manwaring/serverless-plugin-test-helper" }, "homepage": "https://github.com/manwaring/serverless-plugin-test-helper#readme", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "/dist" ], "author": "From Phillip with ♥", "license": "MIT", "keywords": [ "serverless", "plugin", "testing", "library", "helper" ] }