Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,11 @@ If you are adding a trigger via the `eventSourceFile` for the first time, remove
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

### Coding style
This project uses [JavaScript Standard Style](https://standardjs.com/).

[![JavaScript Style Guide](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)

## Running tests

```
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"test": "test"
},
"scripts": {
"test": "mocha"
"test": "standard && mocha"
},
"bin": {
"node-lambda": "./bin/node-lambda"
Expand All @@ -34,7 +34,8 @@
"chai": "^2.0.0",
"hoek": "^2.11.1",
"mocha": "",
"should": ""
"should": "",
"standard": "^10.0.2"
},
"dependencies": {
"async": "^0.9.0",
Expand Down
Loading