{
  "name": "serverless",
  "version": "3.13.0",
  "description": "Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more",
  "preferGlobal": true,
  "homepage": "https://serverless.com/framework/docs/",
  "author": "serverless.com",
  "repository": "serverless/serverless",
  "keywords": [
    "serverless",
    "lambda",
    "aws",
    "amazon",
    "azure",
    "google-cloud",
    "apache-open-whisk",
    "iot"
  ],
  "main": "lib/serverless.js",
  "bin": {
    "serverless": "./bin/serverless.js",
    "sls": "./bin/serverless.js"
  },
  "dependencies": {
    "@serverless/dashboard-plugin": "^6.2.1",
    "@serverless/platform-client": "^4.3.2",
    "@serverless/utils": "^6.0.3",
    "ajv": "^8.11.0",
    "ajv-formats": "^2.1.1",
    "archiver": "^5.3.0",
    "aws-sdk": "^2.1113.0",
    "bluebird": "^3.7.2",
    "cachedir": "^2.3.0",
    "chalk": "^4.1.2",
    "child-process-ext": "^2.1.1",
    "ci-info": "^3.3.0",
    "cli-progress-footer": "^2.3.1",
    "d": "^1.0.1",
    "dayjs": "^1.11.0",
    "decompress": "^4.2.1",
    "dotenv": "^10.0.0",
    "dotenv-expand": "^5.1.0",
    "essentials": "^1.2.0",
    "ext": "^1.6.0",
    "fastest-levenshtein": "^1.0.12",
    "filesize": "^8.0.7",
    "fs-extra": "^9.1.0",
    "get-stdin": "^8.0.0",
    "globby": "^11.1.0",
    "got": "^11.8.3",
    "graceful-fs": "^4.2.10",
    "https-proxy-agent": "^5.0.0",
    "is-docker": "^2.2.1",
    "js-yaml": "^4.1.0",
    "json-cycle": "^1.3.0",
    "json-refs": "^3.0.15",
    "lodash": "^4.17.21",
    "memoizee": "^0.4.15",
    "micromatch": "^4.0.5",
    "node-fetch": "^2.6.7",
    "npm-registry-utilities": "^1.0.0",
    "object-hash": "^2.2.0",
    "open": "^7.4.2",
    "path2": "^0.1.0",
    "process-utils": "^4.0.0",
    "promise-queue": "^2.2.5",
    "require-from-string": "^2.0.2",
    "semver": "^7.3.7",
    "signal-exit": "^3.0.7",
    "strip-ansi": "^6.0.1",
    "supports-color": "^8.1.1",
    "tar": "^6.1.11",
    "timers-ext": "^0.1.7",
    "type": "^2.6.0",
    "untildify": "^4.0.0",
    "uuid": "^8.3.2",
    "yaml-ast-parser": "0.0.43"
  },
  "devDependencies": {
    "@commitlint/cli": "^12.1.4",
    "@serverless/eslint-config": "^4.0.0",
    "@serverless/test": "^10.0.3",
    "adm-zip": "^0.5.9",
    "aws4": "^1.11.0",
    "chai": "^4.3.6",
    "chai-as-promised": "^7.1.1",
    "cos-nodejs-sdk-v5": "^2.11.6",
    "eslint": "^7.32.0",
    "eslint-plugin-import": "^2.26.0",
    "git-list-updated": "^1.2.1",
    "github-release-from-cc-changelog": "^2.3.0",
    "husky": "^4.3.8",
    "jszip": "^3.9.1",
    "lint-staged": "^10.5.4",
    "log": "^6.3.1",
    "log-node": "^8.0.3",
    "mocha": "^9.2.2",
    "mock-require": "^3.0.3",
    "ncjsm": "^4.3.0",
    "nyc": "^15.1.0",
    "pkg": "^5.6.0",
    "prettier": "^2.6.2",
    "proxyquire": "^2.1.3",
    "semver-regex": "^3.1.3",
    "sinon": "^12.0.1",
    "sinon-chai": "^3.7.0",
    "standard-version": "^9.3.2",
    "ws": "^7.5.7",
    "xml2js": "^0.4.23"
  },
  "eslintConfig": {
    "extends": "@serverless/eslint-config/node",
    "root": true,
    "overrides": [
      {
        "files": [
          "test/fixtures/**"
        ],
        "rules": {
          "no-console": "off"
        }
      },
      {
        "files": [
          "test/fixtures/programmatic/plugin/local-esm-plugin/**",
          "test/fixtures/programmatic/plugin/node_modules/esm-plugin/**"
        ],
        "parserOptions": {
          "sourceType": "module"
        }
      },
      {
        "files": [
          "lib/utils/import-module.js"
        ],
        "parserOptions": {
          "ecmaVersion": 2020
        }
      }
    ]
  },
  "eslintIgnore": [
    "!/.github",
    "/lib/plugins/create/templates/**",
    "/lib/plugins/aws/custom-resources/node_modules/**",
    "!/test/fixtures/programmatic/locallyInstalledServerless/node_modules/**"
  ],
  "mocha": {
    "require": [
      "./test/mocha-patch",
      "@serverless/test/setup/log",
      "@serverless/test/setup/mock-homedir",
      "@serverless/test/setup/mock-cwd",
      "@serverless/test/setup/restore-env"
    ],
    "timeout": 45000
  },
  "nyc": {
    "all": true,
    "exclude": [
      ".github",
      "coverage/**",
      "dist/**",
      "docs/**",
      "scripts/test/**",
      "test/**",
      "tmp/**",
      "prettier.config.js"
    ],
    "reporter": [
      "lcov",
      "html",
      "text-summary"
    ]
  },
  "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"
      }
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint"
    ],
    "*.{css,html,js,json,md,yaml,yml}": [
      "prettier -c"
    ]
  },
  "scripts": {
    "commitlint": "commitlint -f HEAD@{15}",
    "coverage": "nyc npm test",
    "integration-test-cleanup": "node test/utils/aws-cleanup.js",
    "integration-test-run-all": "mocha-isolated --pass-through-aws-creds --skip-fs-cleanup-check --max-workers=20 \"test/integration/**/*.test.js\"",
    "integration-test-run-basic": "mocha test/integration-basic.test.js",
    "integration-test-run-package": "mocha-isolated --skip-fs-cleanup-check test/integration-package/**/*.tests.js",
    "integration-test-setup": "node ./scripts/test/integration-setup/index.js",
    "integration-test-teardown": "node ./scripts/test/integration-teardown.js",
    "lint": "eslint .",
    "lint:updated": "pipe-git-updated --ext=js --base=main -- eslint",
    "pkg:build": "node ./scripts/pkg/build.js",
    "pkg:generate-choco-package": "node ./scripts/pkg/generate-choco-package.js",
    "pkg:upload": "node ./scripts/pkg/upload/index.js",
    "postinstall": "node ./scripts/postinstall.js",
    "prepare-release": "standard-version && prettier --write CHANGELOG.md",
    "prettier-check": "prettier -c \"**/*.{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 --base=main -- prettier -c",
    "prettify": "prettier --write \"**/*.{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 --base=main -- prettier --write",
    "test": "mocha \"test/unit/**/*.test.js\"",
    "test:ci": "npm run prettier-check:updated && npm run lint:updated && npm run test:isolated",
    "test:isolated": "mocha-isolated \"test/unit/**/*.test.js\""
  },
  "engines": {
    "node": ">=12.0"
  },
  "license": "MIT"
}
