serverless/package.json
2019-06-14 13:13:26 +02:00

150 lines
4.1 KiB
JSON

{
"name": "serverless",
"version": "1.45.1",
"engines": {
"node": ">=6.0"
},
"engineStrict": true,
"preferGlobal": true,
"homepage": "https://github.com/serverless/serverless#readme",
"description": "Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more",
"author": "serverless.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/serverless/serverless"
},
"keywords": [
"serverless",
"serverless framework",
"serverless applications",
"serverless modules",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services",
"azure",
"azure functions",
"google cloud functions",
"apache open whisk",
"iot",
"internet of things",
"serverless.com"
],
"files": [
"bin",
"lib",
"scripts/postinstall.js",
"scripts/preuninstall.js",
"scripts/pre-release.js",
"package.json",
"package-lock.json",
"README.md",
"LICENSE.txt",
"CHANGELOG.md"
],
"main": "lib/Serverless.js",
"bin": {
"serverless": "./bin/serverless",
"slss": "./bin/serverless",
"sls": "./bin/serverless"
},
"scripts": {
"test": "mocha \"!(node_modules)/**/*.test.js\"",
"test-isolated": "node scripts/test-isolated.js",
"coverage": "nyc --reporter=lcov --reporter=html --reporter=text-summary npm test",
"lint": "eslint . --cache",
"lint:fix": "npm run lint -- --fix",
"lint-updated": "pipe-git-updated --ext=js -- eslint --cache",
"integration-test-run-package": "jest --maxWorkers=5 integration-package",
"integration-test-run-basic": "jest --maxWorkers=5 integration-basic",
"integration-test-run-all": "jest --maxWorkers=5 integration-all",
"integration-test-cleanup": "node tests/utils/aws-cleanup.js",
"postinstall": "node ./scripts/postinstall.js"
},
"mocha": {
"reporter": "tests/mocha-reporter",
"timeout": 5000
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/tests/setup-tests.js"
],
"testEnvironment": "node",
"testRegex": "(\\.|/)(tests)\\.js$",
"testRunner": "jest-circus/runner",
"useStderr": true
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"child-process-ext": "^2.0.0",
"cli-progress-footer": "^1.1.1",
"coveralls": "^3.0.4",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.3",
"git-list-updated": "^1.1.2",
"jest-circus": "^24.8.0",
"jest-cli": "^24.8.0",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"mock-require": "^3.0.3",
"nyc": "^14.1.1",
"p-limit": "^2.2.0",
"process-utils": "^2.3.1",
"proxyquire": "^2.1.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"strip-ansi": "^5.2.0"
},
"dependencies": {
"@serverless/enterprise-plugin": "^1.0.3",
"archiver": "^1.3.0",
"async": "^1.5.2",
"aws-sdk": "^2.473.0",
"bluebird": "^3.5.5",
"cachedir": "^2.2.0",
"chalk": "^2.4.2",
"ci-info": "^1.6.0",
"download": "^5.0.3",
"fast-levenshtein": "^2.0.6",
"filesize": "^3.6.1",
"fs-extra": "^0.26.7",
"get-stdin": "^5.0.1",
"globby": "^6.1.0",
"graceful-fs": "^4.1.15",
"https-proxy-agent": "^2.2.1",
"is-docker": "^1.1.0",
"js-yaml": "^3.13.1",
"json-cycle": "^1.3.0",
"json-refs": "^2.1.7",
"jszip": "^3.2.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"nanomatch": "^1.2.13",
"node-fetch": "^1.7.3",
"object-hash": "^1.3.1",
"promise-queue": "^2.2.5",
"raven": "^1.2.1",
"rc": "^1.2.8",
"replaceall": "^0.1.6",
"semver": "^5.7.0",
"semver-regex": "^1.0.0",
"tabtab": "^2.2.2",
"untildify": "^3.0.3",
"update-notifier": "^2.5.0",
"uuid": "^2.0.3",
"write-file-atomic": "^2.4.3",
"yaml-ast-parser": "0.0.34"
}
}