Skip to content

Commit

Permalink
Merge pull request #2 from FreeAllMedia/feature/watch
Browse files Browse the repository at this point in the history
watch implementation
  • Loading branch information
nicosommi committed Aug 10, 2015
2 parents ec2f0e9 + a553216 commit b132df0
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 56 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ deploy:
provider: npm
email: fam-operations@freeallmedia.com
api_key:
secure: bDwKHmm7uqjI+jfHvBRn8hgDG6rW98yOILsYzZa2wdXaF8JQAMq/z/LiYE5hNd+p9pfqZvMf6VrJBjCFZDj1nFzOlNTtOSpIekHwzdCb/eHU4hmPb1th0/qC3rCLu52zXQbWFxfyrPW9fYUcQmo4JgEbiRAGBD2EQa10vKMjPYbYaj2+2bD9pNq4YZvhjIt7JgoH5PEKxbB7l2At/annV7wwWhgEFVOERqOp8jtkF5b99BB6pBdj5+FBc+g4fvRMMzG94T3AsADNs3InAKrhvNOdpc3NlXepmqYX/kl8U5urhmuzwSsmhM5hk+8lzua1aCIissW89WqPwGxvtqaenJ0+shvDedAiFGdUiegzFWs4QnBQp+jp5aejyy+tFK6HxbykoyF7TuTYfy9vTQ+dWz/PfazfYBm8mIRzKmS3s4nW8Pj0yAqXpVVrxFziND5tZcMQm+ZmfEW2P5z+dFbSp4MK1Vc5ZLhpdC6wG1/PmIp7rOyUU8Xz3WH4nvoQ5nYztyb+vzXzZ0QY/g9eGc1GswKHWQQYL1g/STPfhu7sCwtS+Z1IjJvehnJri0SsvzbuzIOzmy1kXDlHtAXqspRbzz8baCagq6LreNyvSmwICITcHRn2CslBPbbL2F/Jb550Tw0eEkWxYs6yi3mvbxnRQRcTqyLhkxnuT5Huf3kyvYI=
secure: O8gNsJ4y45AX7JlakRJfQoUiiV6mU3EJ7lQD9RNOZ7FKL48eliFHVgLPDI5rmDqeUoEVvNL5QEhEarI0dZsZh2NciFMS1kGvYGxCv4eUDhq828fqrUCxzPjcLGv/DwNrVhhUfiLJziDPqlyrdNMaHGmn1Ix7uwC7mAoOxLhThHmUkmO+K3ci8ea4DXT3VGRslqUrX0D/IJlBD1BH4jFT5YXIbqLG58nl3Su4NzfBaXFyAmcBiNNJWhKOF0e1YrHL0DvJPpjx0cYy1HVBWSgVw2bgaUUg0vUXFFQsboZtTueDF2qAU3f+I2tZSeNKKfvktJ+SzTknPdsogchMkSlY4FB4nyhYMPCkhkF9lTjUbi0gdlEC31oMTaCesZh28AGujKQoX4rilRFxbTnasEiYHbv4CtCK/ae211Fmb9E+9xHCeqxFMvE7xusJrYkKfHA2x2SjksDm0Nc4HxLknBSGm6zdvW0a6P0sV4Ie5HY6TbXeFlw26z7QMGJRtzcBQrDv8I9z5RaUkP4ACc4V9Pw2xJS7BXyJDfvDxF8l92F7BrxjSQnodZ4Ye3oBHhVbNcXLrDEhyfTHjnWfQMg7kIN4UAl6rVN9reUSquMxat8tVRKjf/Oe3Q1z25vXrhkkIW9w1zgP6/lF5X7lDcdXfYUAr3EH+G8D+JfZxIxUjGaICz8=
on:
branch: master
repo: FreeAllMedia/jsonapi-formatter
branch: master
111 changes: 57 additions & 54 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,58 @@
{
"name": "jsonapi-formatter",
"version": "0.1.1",
"description": "ES6 Component that works as an omnirouter middleware to provide jsonapi responses.",
"main": "index.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/FreeAllMedia/jsonapi-formatter.git"
},
"keywords": [
"jsonapi-formatter"
],
"author": "Free All Media",
"contributors": [
{
"name": "nicosommi",
"email": "nicosommi@gmail.com"
},
{
"name": "dcrockwell",
"email": "dcautomates@gmail.com"
},
{
"name": "paulgoggin",
"email": "pgoggin@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/FreeAllMedia/jsonapi-formatter/issues"
},
"homepage": "https://github.com/FreeAllMedia/jsonapi-formatter",
"dependencies": {},
"devDependencies": {
"babel": "^5.5.6",
"babel-eslint": "^4.0.5",
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"eslint": "^0.24.1",
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"gulp-istanbul": "^0.10.0",
"gulp-mocha": "^2.1.1",
"karma": "^0.12.36",
"karma-browserify": "^4.2.1",
"karma-chai": "^0.1.0",
"karma-detect-browsers": "^2.0.0",
"karma-mocha": "^0.1.10",
"karma-sauce-launcher": "^0.2.11",
"mocha": "^2.2.5"
}
}
"name": "jsonapi-formatter",
"version": "0.1.1",
"description": "ES6 Component that works as an omnirouter middleware to provide jsonapi responses.",
"main": "index.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/FreeAllMedia/jsonapi-formatter.git"
},
"keywords": [
"jsonapi-formatter"
],
"author": "Free All Media",
"contributors": [
{
"name": "nicosommi",
"email": "nicosommi@gmail.com"
},
{
"name": "dcrockwell",
"email": "dcautomates@gmail.com"
},
{
"name": "paulgoggin",
"email": "pgoggin@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/FreeAllMedia/jsonapi-formatter/issues"
},
"homepage": "https://github.com/FreeAllMedia/jsonapi-formatter",
"dependencies": {},
"devDependencies": {
"babel": "^5.5.6",
"babel-eslint": "^4.0.5",
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"eslint": "^0.24.1",
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"gulp-istanbul": "^0.10.0",
"gulp-mocha": "^2.1.1",
"gulp-util": "^3.0.6",
"karma": "^0.12.36",
"karma-browserify": "^4.2.1",
"karma-chai": "^0.1.0",
"karma-detect-browsers": "^2.0.0",
"karma-mocha": "^0.1.10",
"karma-sauce-launcher": "^0.2.11",
"mocha": "^2.2.5",
"superstack": "0.0.4"
},
"generatorVersion": "0.2.20"
}

0 comments on commit b132df0

Please sign in to comment.