File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,4 +10,5 @@ npm-debug.log
1010.idea
1111* .sublime-project
1212* .sublime-workspace
13- * .orig
13+ * .orig
14+ coverage
Original file line number Diff line number Diff line change 11language : node_js
22node_js :
3- - " 0.10"
4- before_script :
5- - npm install
3+ - " 4"
4+ - " 0.12"
65notifications :
76 email : true
7+ after_success : " npm run coveralls"
8+ sudo : false
Original file line number Diff line number Diff line change 1818 "moduleconfig" : " 1.1.0"
1919 },
2020 "scripts" : {
21- "test" : " node test.js"
21+ "test" : " istanbul cover _mocha" ,
22+ "coveralls" : " cat ./coverage/lcov.info | coveralls"
2223 },
2324 "devDependencies" : {
24- "mocha" : " 2.3.3" ,
2525 "chai" : " 3.3.0" ,
26- "sinon" : " 1.17.1" ,
27- "sinon-chai" : " 2.8.0" ,
26+ "coveralls" : " ^2.11.4" ,
27+ "istanbul" : " 0.4.0" ,
28+ "mocha" : " 2.3.3" ,
2829 "mocha-jshint" : " 2.2.3" ,
29- "request" : " 2.64.0"
30+ "mocha-lcov-reporter" : " ^1.0.0" ,
31+ "request" : " 2.64.0" ,
32+ "sinon" : " 1.17.1" ,
33+ "sinon-chai" : " 2.8.0"
3034 },
3135 "readmeFilename" : " readme.md" ,
3236 "gitHead" : " 985c718ebf69fc91205c6c40d0a46ce49c717f2b" ,
3741 " error" ,
3842 " handling"
3943 ],
40- "license" : " APACHE V2.0 "
44+ "license" : " MIT "
4145}
Original file line number Diff line number Diff line change @@ -3,11 +3,7 @@ nodeerrors
33This is a library for handling errors more efficiently in ``` node.js ``` , especially made for people like me
44who use function hoisting most of the time to avoid some of the so-called "callback hell".
55
6- [ ![ Build Status] ( https://travis-ci.org/ebdrup/nodeerrors.png )] ( https://travis-ci.org/ebdrup/nodeerrors )
7-
8- [ ![ NPM version] ( https://badge.fury.io/js/nodeerrors.png )] ( http://badge.fury.io/js/nodeerrors )
9-
10- [ ![ Dependency Status] ( https://gemnasium.com/ebdrup/nodeerrors.png )] ( https://gemnasium.com/ebdrup/nodeerrors )
6+ [ ![ Build Status] ( https://travis-ci.org/ebdrup/nodeerrors.png )] ( https://travis-ci.org/ebdrup/nodeerrors ) [ ![ NPM version] ( https://badge.fury.io/js/nodeerrors.png )] ( http://badge.fury.io/js/nodeerrors ) [ ![ Dependency Status] ( https://gemnasium.com/ebdrup/nodeerrors.png )] ( https://gemnasium.com/ebdrup/nodeerrors ) [ ![ Coverage Status] ( https://coveralls.io/repos/ebdrup/nodeerrors/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/ebdrup/nodeerrors?branch=master )
117
128Installation
139------------
You can’t perform that action at this time.
0 commit comments