kes
Version:
Making deployment to AWS using CloudFormation easier and fun
101 lines (100 loc) • 2.46 kB
JSON
{
"name": "kes",
"version": "2.2.8",
"description": "Making deployment to AWS using CloudFormation easier and fun",
"scripts": {
"html-docs": "documentation build bin/cli.js -f html -o _docs --theme node_modules/documentation-devseed-theme",
"md-docs": "documentation build bin/readme.js -f md -o docs/README.md && documentation build src/** -f md -o docs/API.md",
"integration-test": "ava tests/test.integration.js",
"test": "ava tests/test.src.js"
},
"bin": {
"kes": "./bin/cli.js"
},
"keywords": [
"CloudFormation",
"AWS"
],
"engines": {
"node": ">=4.3"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"extends": "standard",
"rules": {
"semi": [
2,
"always"
],
"space-before-function-paren": "off",
"spaced-comment": "off",
"no-extra-semi": 2,
"brace-style": [
"error",
"stroustrup"
],
"semi-spacing": [
2,
{
"before": false,
"after": true
}
]
}
},
"ava": {
"files": [
"tests"
],
"source": [
"**/*.js",
"package.json"
]
},
"repository": "https://github.com/developmentseed/kes",
"author": "Alireza Jazayeri <alireza@developmentseed.org>",
"license": "MIT",
"dependencies": {
"archiver": "^2.1.0",
"aws-sdk": "^2.14.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"deprecate": "^1.0.0",
"dotenv": "^4.0.0",
"fs-extra": "^2.0.0",
"handlebars": "^4.0.6",
"inquirer": "^5.2.0",
"js-yaml": "^3.8.1",
"lodash.capitalize": "^4.2.1",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.merge": "^4.6.0",
"lodash.replace": "^4.1.4",
"lodash.startswith": "^4.2.1",
"lodash.trim": "^4.5.1",
"lodash.upperfirst": "^4.3.1",
"lodash.values": "^4.3.0",
"moment": "^2.19.4",
"mustache": "^2.3.0",
"node-forge": "^0.7.1",
"p-limit": "^1.2.0",
"p-retry": "^2.0.0",
"prompt": "^1.0.0",
"yaml-files": "^0.1.0"
},
"devDependencies": {
"ava": "^0.21.0",
"documentation": "~5.2.2",
"documentation-devseed-theme": "^0.1.5",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"github-slugger": "^1.2.0"
}
}