Skip to content

Commit 436ce0d

Browse files
author
marco.minetti
committed
Updated dependencies, travis targets and bump version 0.3.0.
1 parent 61621be commit 436ce0d

File tree

3 files changed

+6
-18
lines changed

3 files changed

+6
-18
lines changed

.travis.yml

-12
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,7 @@ language: node_js
22

33
node_js:
44
- "0.10"
5-
- "0.11"
65
- "0.12"
7-
- "iojs-v1.0"
8-
- "iojs-v1.1"
9-
- "iojs-v1.2"
10-
- "iojs-v1.3"
11-
- "iojs-v1.4"
12-
- "iojs-v1.5"
13-
- "iojs-v1.6"
14-
- "iojs-v1.7"
15-
- "iojs-v1.8"
16-
- "iojs-v2.0"
17-
- "iojs-v3.0"
186
- "4"
197
- "5"
208
- "6"

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "memwatch-next",
33
"description": "Keep an eye on your memory usage, and discover and isolate leaks.",
4-
"version": "0.2.10",
4+
"version": "0.3.0",
55
"author": "Lloyd Hilaiel (http://lloyd.io)",
66
"engines": {
77
"node": ">= 0.8.0"
@@ -24,16 +24,16 @@
2424
"test": "mocha tests --reporter spec"
2525
},
2626
"devDependencies": {
27-
"mocha": "1.2.2",
28-
"should": "0.6.3"
27+
"mocha": "^2.4.5",
28+
"should": "^8.3.1"
2929
},
3030
"contributors": [
3131
"Jed Parsons (@jedp)",
3232
"Jeff Haynie (@jhaynie)",
3333
"Justin Matthews (@jmatthewsr-ms)"
3434
],
3535
"dependencies": {
36-
"bindings": "^1.2.0",
37-
"nan": "^2.0.0"
36+
"bindings": "^1.2.1",
37+
"nan": "^2.3.2"
3838
}
3939
}

tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('the library', function() {
1515
describe('calling .gc()', function() {
1616
it('should cause a stats() event to be emitted', function(done) {
1717
memwatch.once('stats', function(s) {
18-
s.should.be.a('object');
18+
s.should.be.object;
1919
done();
2020
});
2121
memwatch.gc();

0 commit comments

Comments
 (0)