{
  "name": "@beforeyoubid/serverless-offline",
  "version": "7.1.0",
  "description": "Emulate AWS λ and API Gateway locally when developing your Serverless project",
  "license": "MIT",
  "main": "dist/main.js",
  "type": "commonjs",
  "scripts": {
    "build": "rimraf dist && babel src --ignore \"**/__tests__/**/*\" --out-dir dist && copyfiles -u 1 \"src/**/*.{vm,py,rb}\" dist",
    "format": "eslint . --fix",
    "lint": "eslint .",
    "lint:updated": "pipe-git-updated --ext=js -- eslint",
    "prepare": "npm run build",
    "prepare-release": "standard-version && prettier --write CHANGELOG.md",
    "prepublishOnly": "npm run lint && npm run build",
    "prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
    "prettier-check:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
    "prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
    "prettify:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write",
    "test": "npm run build && jest --verbose --silent --runInBand",
    "test:cov": "npm run build && jest --coverage --silent --runInBand --collectCoverageFrom=src/**/*.js",
    "test:log": "npm run build && jest --verbose",
    "test:noBuild": "jest --verbose --runInBand --bail",
    "test:unit": "jest --verbose --silent --runInBand --config jest.config.units.js",
    "test:watch": "SKIP_SETUP=true jest --verbose --watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/beforeyoubid/serverless-offline.git"
  },
  "bugs": {
    "url": "https://github.com/beforeyoubid/serverless-offline/issues"
  },
  "homepage": "https://github.com/beforeyoubid/serverless-offline",
  "files": [
    "dist/**",
    "package.json",
    "LICENSE",
    "README.md"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint"
    ],
    "*.{css,html,js,json,md,yaml,yml}": [
      "prettier -c"
    ]
  },
  "engines": {
    "node": ">=12.0.0"
  },
  "standard-version": {
    "skip": {
      "commit": true,
      "tag": true
    },
    "types": [
      {
        "type": "feat",
        "section": "Features"
      },
      {
        "type": "fix",
        "section": "Bug Fixes"
      },
      {
        "type": "perf",
        "section": "Performance Improvements"
      },
      {
        "type": "refactor",
        "section": "Maintenance Improvements"
      }
    ]
  },
  "dependencies": {
    "@hapi/boom": "^9.1.4",
    "@hapi/h2o2": "^9.1.0",
    "@hapi/hapi": "^20.2.1",
    "aws-sdk": "^2.1097.0",
    "boxen": "^5.1.2",
    "chalk": "^4.1.2",
    "cuid": "^2.1.8",
    "execa": "^5.1.1",
    "extend": "^3.0.2",
    "fs-extra": "^9.1.0",
    "java-invoke-local": "0.0.6",
    "js-string-escape": "^1.0.1",
    "jsonpath-plus": "^5.1.0",
    "jsonschema": "^1.4.0",
    "jsonwebtoken": "^8.5.1",
    "jszip": "^3.7.1",
    "luxon": "^1.28.0",
    "node-fetch": "^2.6.7",
    "node-schedule": "^1.3.3",
    "object.fromentries": "^2.0.5",
    "p-memoize": "^4.0.4",
    "p-queue": "^6.6.2",
    "p-retry": "^4.6.1",
    "please-upgrade-node": "^3.2.0",
    "portfinder": "^1.0.28",
    "semver": "^7.3.5",
    "update-notifier": "^5.1.0",
    "velocityjs": "^2.0.6",
    "ws": "^7.5.7"
  },
  "devDependencies": {
    "@babel/cli": "^7.17.6",
    "@babel/core": "^7.17.8",
    "@babel/plugin-proposal-class-properties": "^7.16.7",
    "@babel/plugin-proposal-dynamic-import": "^7.16.7",
    "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
    "@babel/plugin-proposal-optional-chaining": "^7.16.7",
    "@babel/plugin-transform-modules-commonjs": "^7.17.7",
    "@babel/register": "^7.17.7",
    "archiver": "^5.3.0",
    "babel-eslint": "^10.1.0",
    "copyfiles": "^2.4.1",
    "eslint": "^7.32.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-config-prettier": "^7.2.0",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-prettier": "^3.4.1",
    "git-list-updated": "^1.2.1",
    "husky": "^4.3.8",
    "jest": "^26.6.3",
    "lint-staged": "^11.2.6",
    "p-map": "^4.0.0",
    "prettier": "^2.6.0",
    "rimraf": "^3.0.2",
    "serverless": "^2.72.3",
    "standard-version": "^9.3.2"
  },
  "peerDependencies": {
    "serverless": "^1.60.0 || 2 || 3"
  }
}
