drops dotenv and chalk dependencies

This commit is contained in:
Todd Treece 2015-08-02 10:20:35 -04:00
parent ccc8533710
commit 4b4059632c
2 changed files with 3 additions and 3 deletions

View file

@ -52,7 +52,9 @@ var npr = NPR({
// promises are [the] shit.
// we speak the way we breathe.
npr.one.init()
.then(npr.one.listening.getRecommendations({ channel: 'npr' }))
.then(function() {
return npr.one.listening.getRecommendations({ channel: 'npr' });
})
.then(function(recommendations) {
// print out the first two recommendations to the console
console.log(recommendations.items.slice(0,2));

View file

@ -31,8 +31,6 @@
},
"dependencies": {
"bunyan": "^1.4.0",
"chalk": "^1.1.0",
"dotenv": "^1.2.0",
"es6-shim": "^0.32.2",
"swagger-client": "^2.1.2"
}