serverless/package.json
2016-06-28 13:24:21 +02:00

78 lines
2.0 KiB
JSON

{
"name": "serverless",
"version": "1.0.0-alpha.1",
"engines": {
"node": ">=4.0"
},
"preferGlobal": true,
"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",
"ibm open whisk",
"iot",
"internet of things",
"serverless.com"
],
"main": "lib/Serverless.js",
"bin": {
"serverless": "./bin/serverless",
"slss": "./bin/serverless",
"sls": "./bin/serverless",
"serverless-run-python-handler": "./bin/serverless-run-python-handler"
},
"scripts": {
"test": "istanbul cover _mocha tests/all -- -R spec --recursive",
"lint": "eslint .",
"integration-test": "mocha tests/integration_test"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"sinon": "^1.17.4"
},
"dependencies": {
"async": "^1.5.2",
"aws-sdk": "^2.3.17",
"bluebird": "^3.4.0",
"chalk": "^1.1.1",
"fs-extra": "^0.26.7",
"https-proxy-agent": "^1.0.0",
"js-yaml": "^3.6.1",
"json-refs": "^2.1.5",
"lodash": "^4.13.1",
"minimist": "^1.2.0",
"moment": "^2.13.0",
"node-zip": "^1.1.1",
"replaceall": "^0.1.6",
"semver-regex": "^1.0.0",
"shelljs": "^0.6.0",
"traverse": "^0.6.6"
}
}