Skip to content

Commit

Permalink
update dep versions
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaut.sabot committed Apr 24, 2017
1 parent d390422 commit ff5c1e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = function globalJsdom (html, options) {
}

var jsdom = require('jsdom')
var document = jsdom.jsdom(html, options)
var document = jsdom.JSDOM(html, options)
var window = document.defaultView

KEYS.forEach(function (key) {
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsdom-global",
"version": "2.1.1",
"version": "2.2.0",
"description": "Enable DOM in Node.js",
"main": "index.js",
"browser": "browser.js",
Expand All @@ -23,8 +23,8 @@
},
"homepage": "https://github.com/rstacruz/jsdom-global#readme",
"devDependencies": {
"jsdom": "9.0.0",
"standard": "7.0.1",
"tape": "4.4.0"
"jsdom": "~10.0.0",
"standard": "~10.0.2",
"tape": "~4.6.3"
}
}

0 comments on commit ff5c1e1

Please sign in to comment.