Socket
Socket
Sign inDemoInstall

jq

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jq - npm Package Compare versions

Comparing version 1.6.4 to 1.7.0

Makefile

18

package.json
{
"author": "Jake Luer <jake@alogicalparadox.com>",
"name": "jq",
"description": "server-side jQuery wrapper for node",
"version": "1.6.4",
"repository": "git://github.com/logicalparadox/jq.git",
"description": "Server-side jQuery wrapper for node.",
"version": "1.7.0",
"repository": {
"type": "git",
"url": "https://github.com/logicalparadox/jq"
},
"main": "index.js",

@@ -16,11 +19,12 @@ "bin": {

"jsdom": "0.2.x",
"xmlhttprequest": "1.2.x"
"xmlhttprequest": "1.3.x"
},
"devDependencies": {
"commander": "0.1.x",
"commander": "0.5.x",
"winston": "0.5.x",
"colors": "0.5.x",
"colors": "0.6.x",
"rimraf": "1.0.x",
"async": "0.1.x"
"async": "0.1.x",
"mocha": "*"
}
}

@@ -14,4 +14,8 @@ {

"url": "http://bassistance.de/"
},
}],
"url": "http://docs.jquery.com/QUnit",
"repositories" : [{
"type": "git",
"url": "https://github.com/jquery/qunit.git"
}],
"license": {

@@ -23,3 +27,3 @@ "name": "MIT",

"keywords": [ "testing", "unit", "jquery" ],
"lib": "qunit"
"main": "qunit/qunit.js"
}

@@ -1,9 +0,10 @@

var assert = require('assert');
var assert = require('assert')
, jq = require('..')
, $ = jq.jQuery;
var jq = require('..'),
$ = jq.jQuery;
var exports = module.exports = {};
exports['test jquery version'] = function() {
var version = $().jquery;
assert.equal(version, '1.6.4');
assert.equal(version, '1.7');
};

@@ -22,11 +23,11 @@

win2 = jq.jQuery.create(win0);
win1('body').append('<div id="win1">Window 1</div>');
win2('body').append('<div id="win2">Window 2</div>');
var test1 = win1('#win1').html(),
test2 = win2('#win2').html();
assert.equal(test1, 'Window 1');
assert.equal(test2, 'Window 2');
};

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc