Skip to content

Commit be00b68

Browse files
author
ekmartin
committed
Remove unused dependencies
1 parent 8e78027 commit be00b68

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
This project adheres to [Semantic Versioning](http://semver.org/).
33

4+
## [3.5.2] - 2015-06-26
5+
### Fixed
6+
- Remove old unused dependencies.
7+
48
## [3.5.1] - 2015-06-26
59
### Fixed
610
- A bug introduced in 3.5.0 where Slack messages sent to IRC wouldn't get parsed.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jscs:
1818
$(JSCS) .
1919

2020
make cover:
21-
$(ISTANBUL) cover $(MOCHA) $(TESTS)
21+
NODE_ENV="test" $(ISTANBUL) cover $(MOCHA) $(TESTS)
2222
$(ISTANBUL) report cobertura
2323

2424
make lint: jshint jscs

index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
var createBots = require('./lib/helpers').createBots;
44
var logger = require('winston');
55

6+
/*istanbul ignore next*/
67
if (process.env.NODE_ENV === 'development') {
78
logger.level = 'debug';
89
}

package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@
2929
},
3030
"license": "MIT",
3131
"dependencies": {
32-
"body-parser": "~1.12.4",
3332
"check-env": "~1.2.0",
3433
"commander": "~2.8.1",
3534
"irc": "~0.3.9",
36-
"lodash": "~3.8.0",
37-
"slack-client": "^1.4.0",
35+
"lodash": "~3.9.3",
36+
"slack-client": "~1.4.0",
3837
"winston": "~1.0.0"
3938
},
4039
"devDependencies": {
@@ -43,11 +42,8 @@
4342
"jscs": "~1.13.1",
4443
"jshint": "~2.7.0",
4544
"mocha": "~2.2.5",
46-
"mock-fs": "~2.7.0",
47-
"nock": "~2.0.1",
4845
"rewire": "^2.3.1",
4946
"sinon": "~1.14.1",
50-
"sinon-chai": "~2.7.0",
51-
"supertest": "~1.0.1"
47+
"sinon-chai": "~2.7.0"
5248
}
5349
}

0 commit comments

Comments
 (0)