Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Closes #26
  • Loading branch information
Rowno committed Apr 1, 2015
1 parent 0b5d4ab commit ee11566
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,22 @@ The list of test files to run can be specified using either the standard Grunt f
* `compilers` (array) - use the given module(s) to compile files.
* `debug-brk` (boolean) - enable node's debugger breaking on the first line.
* `debug` (boolean) - enable node's debugger, synonym for `node --debug`.
* `delay` (boolean) - wait for async suite definition.
* `expose-gc` (boolean) - expose gc extension, synonym for `node --expose-gc`.
* `fgrep` (string) - only run tests containing <string>.
* `gc-global` (boolean) - always perform global GCs, synonym for `node --gc-global`.
* `globals` (array) - allow the given comma-delimited global names.
* `grep` (string) - only run tests matching pattern.
* `grep` (string) - only run tests matching <pattern>.
* `growl` (boolean) - enable growl notification support.
* `harmony-collections` (boolean) - enable harmony collections, synonym for `node --harmony-collections`.
* `harmony_arrow_functions` (boolean) - enable "harmony arrow functions" (iojs), synonym for `node --harmony_arrow_functions`.
* `harmony_proxies` (boolean) - enable "harmony proxies" (iojs), synonym for `node --harmony_proxies`.
* `harmony_shipping` (boolean) - enable all shipped harmony fetaures (iojs), synonym for `node --harmony_shipping`.
* `harmony-collections` (boolean) - enable harmony collections (sets, maps, and weak maps), synonym for `node --harmony-collections`.
* `harmony-generators` (boolean) - enable harmony generators, synonym for `node --harmony-generators`.
* `harmony-proxies` (boolean) - enable harmony proxies, synonym for `node --harmony-proxies`.
* `harmony` (boolean) - enable all harmony features (except typeof), synonym for `node --harmony`.
* `inline-diffs` (boolean) - display actual/expected differences inline within each string.
* `invert` (boolean) - inverts `grep` matches.
* `invert` (boolean) - inverts `grep` and `fgrep` matches.
* `ndebug` (boolean) - use node's debugger, synonym for `node debug`.
* `no-colors` (boolean) - force disabling of colors.
* `no-deprecation` (boolean) - silence deprecation warnings.
Expand Down
13 changes: 9 additions & 4 deletions lib/mocha.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,19 @@ var BOOL_OPTIONS = [
'bail',
'check-leaks',
'colors',
'debug',
'debug-brk',
'debug',
'delay',
'expose-gc',
'gc-global',
'growl',
'harmony',
'harmony_arrow_functions',
'harmony_proxies',
'harmony_shipping',
'harmony-collections',
'harmony-generators',
'harmony-proxies',
'harmony',
'inline-diffs',
'invert',
'no-colors',
Expand All @@ -28,10 +32,11 @@ var BOOL_OPTIONS = [
'recursive',
'sort',
'throw-deprecation',
'trace',
'trace-deprecation'
'trace-deprecation',
'trace'
];
var STRING_OPTIONS = [
'fgrep',
'grep',
'opts',
'reporter',
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@
"node": ">= 0.10.x"
},
"dependencies": {
"mocha": "~2.1.0"
"mocha": "~2.2.1"
},
"peerDependencies": {
"grunt": "~0.4.1"
},
"devDependencies": {
"coffee-script": "~1.8.0",
"coffee-script": "~1.9.1",
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-jshint": "~0.11.1",
"grunt-contrib-nodeunit": "~0.4.0",
"jshint-stylish": "~1.0.0",
"load-grunt-tasks": "~2.0.0",
"should": "~4.4.4"
"load-grunt-tasks": "~3.1.0",
"should": "~5.2.0"
},
"scripts": {
"test": "grunt test"
Expand Down

0 comments on commit ee11566

Please sign in to comment.