├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── package.json ├── src └── index.js └── test ├── index.js └── support └── ServerlessBuilder.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcurioso/raml-serverless/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcurioso/raml-serverless/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcurioso/raml-serverless/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcurioso/raml-serverless/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcurioso/raml-serverless/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcurioso/raml-serverless/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcurioso/raml-serverless/HEAD/test/index.js -------------------------------------------------------------------------------- /test/support/ServerlessBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewcurioso/raml-serverless/HEAD/test/support/ServerlessBuilder.js --------------------------------------------------------------------------------