├── .eslintignore ├── .eslintrc.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── keymaps └── serverless-dashboard.json ├── lib ├── serverless-action.js ├── serverless-dashboard-view.js └── serverless-dashboard.js ├── menus └── serverless-dashboard.json ├── package.json ├── screenshot.gif ├── spec ├── serverless-dashboard-spec.js └── serverless-dashboard-view-spec.js └── styles └── serverless-dashboard.less /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | tmp 4 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/serverless-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/keymaps/serverless-dashboard.json -------------------------------------------------------------------------------- /lib/serverless-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/lib/serverless-action.js -------------------------------------------------------------------------------- /lib/serverless-dashboard-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/lib/serverless-dashboard-view.js -------------------------------------------------------------------------------- /lib/serverless-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/lib/serverless-dashboard.js -------------------------------------------------------------------------------- /menus/serverless-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/menus/serverless-dashboard.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/screenshot.gif -------------------------------------------------------------------------------- /spec/serverless-dashboard-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/spec/serverless-dashboard-spec.js -------------------------------------------------------------------------------- /spec/serverless-dashboard-view-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/spec/serverless-dashboard-view-spec.js -------------------------------------------------------------------------------- /styles/serverless-dashboard.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-operations/serverless-dashboard-for-atom/HEAD/styles/serverless-dashboard.less --------------------------------------------------------------------------------