File tree 3 files changed +6
-18
lines changed
3 files changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -2,19 +2,7 @@ language: node_js
2
2
3
3
node_js :
4
4
- " 0.10"
5
- - " 0.11"
6
5
- " 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"
18
6
- " 4"
19
7
- " 5"
20
8
- " 6"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " memwatch-next" ,
3
3
"description" : " Keep an eye on your memory usage, and discover and isolate leaks." ,
4
- "version" : " 0.2.10 " ,
4
+ "version" : " 0.3.0 " ,
5
5
"author" : " Lloyd Hilaiel (http://lloyd.io)" ,
6
6
"engines" : {
7
7
"node" : " >= 0.8.0"
24
24
"test" : " mocha tests --reporter spec"
25
25
},
26
26
"devDependencies" : {
27
- "mocha" : " 1.2.2 " ,
28
- "should" : " 0.6.3 "
27
+ "mocha" : " ^2.4.5 " ,
28
+ "should" : " ^8.3.1 "
29
29
},
30
30
"contributors" : [
31
31
" Jed Parsons (@jedp)" ,
32
32
" Jeff Haynie (@jhaynie)" ,
33
33
" Justin Matthews (@jmatthewsr-ms)"
34
34
],
35
35
"dependencies" : {
36
- "bindings" : " ^1.2.0 " ,
37
- "nan" : " ^2.0.0 "
36
+ "bindings" : " ^1.2.1 " ,
37
+ "nan" : " ^2.3.2 "
38
38
}
39
39
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ describe('the library', function() {
15
15
describe ( 'calling .gc()' , function ( ) {
16
16
it ( 'should cause a stats() event to be emitted' , function ( done ) {
17
17
memwatch . once ( 'stats' , function ( s ) {
18
- s . should . be . a ( ' object' ) ;
18
+ s . should . be . object ;
19
19
done ( ) ;
20
20
} ) ;
21
21
memwatch . gc ( ) ;
You can’t perform that action at this time.
0 commit comments