Skip to content
This repository has been archived by the owner on Dec 6, 2017. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanmanning committed Aug 6, 2013
1 parent fe3be9e commit 86eed89
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 deletions lib/chic.js
@@ -1,4 +1,4 @@
/*global define */
/* global define */
(function (root, chic) {
'use strict';

Expand Down Expand Up @@ -59,7 +59,8 @@
// Add new properties
forEachProp(props, function (value, name) {
if (isFn(value)) {
return proto[name] = applySuperMethod(value, Parent.prototype[name]);
proto[name] = applySuperMethod(value, Parent.prototype[name]);
return;
}
proto[name] = value;
});
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -17,10 +17,10 @@
"node": ">=0.6"
},
"devDependencies": {
"jshint": "~0.9",
"mocha": "~1.8",
"jshint": "~2.1",
"mocha": "~1.12",
"mocha-srv": "~0.1",
"proclaim": "~1.0",
"proclaim": "~1.5",
"sinon": "~1.6"
},

Expand Down
4 changes: 2 additions & 2 deletions test/integ/chic.js
@@ -1,5 +1,5 @@
/*jshint maxstatements: 100 */
/*global beforeEach, describe, it */
/* jshint maxstatements: 100 */
/* global beforeEach, describe, it */
(function () {
'use strict';

Expand Down
4 changes: 2 additions & 2 deletions test/unit/chic.js
@@ -1,5 +1,5 @@
/*jshint maxlen: 140, maxstatements: 20 */
/*global beforeEach, describe, it */
/* jshint maxlen: 140, maxstatements: 20 */
/* global beforeEach, describe, it */
(function () {
'use strict';

Expand Down

0 comments on commit 86eed89

Please sign in to comment.