Skip to content

Commit

Permalink
Remove unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ekmartin committed Jun 26, 2015
1 parent 8e78027 commit be00b68
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.5.2] - 2015-06-26
### Fixed
- Remove old unused dependencies.

## [3.5.1] - 2015-06-26
### Fixed
- A bug introduced in 3.5.0 where Slack messages sent to IRC wouldn't get parsed.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jscs:
$(JSCS) .

make cover:
$(ISTANBUL) cover $(MOCHA) $(TESTS)
NODE_ENV="test" $(ISTANBUL) cover $(MOCHA) $(TESTS)
$(ISTANBUL) report cobertura

make lint: jshint jscs
Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
var createBots = require('./lib/helpers').createBots;
var logger = require('winston');

/*istanbul ignore next*/
if (process.env.NODE_ENV === 'development') {
logger.level = 'debug';
}
Expand Down
10 changes: 3 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@
},
"license": "MIT",
"dependencies": {
"body-parser": "~1.12.4",
"check-env": "~1.2.0",
"commander": "~2.8.1",
"irc": "~0.3.9",
"lodash": "~3.8.0",
"slack-client": "^1.4.0",
"lodash": "~3.9.3",
"slack-client": "~1.4.0",
"winston": "~1.0.0"
},
"devDependencies": {
Expand All @@ -43,11 +42,8 @@
"jscs": "~1.13.1",
"jshint": "~2.7.0",
"mocha": "~2.2.5",
"mock-fs": "~2.7.0",
"nock": "~2.0.1",
"rewire": "^2.3.1",
"sinon": "~1.14.1",
"sinon-chai": "~2.7.0",
"supertest": "~1.0.1"
"sinon-chai": "~2.7.0"
}
}

0 comments on commit be00b68

Please sign in to comment.