Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

deps-sort

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deps-sort - npm Package Compare versions

Comparing version 0.1.2 to 1.0.0

.travis.yml

12

index.js

@@ -1,2 +0,2 @@

var through = require('through');
var through = require('through2');

@@ -7,5 +7,5 @@ module.exports = function (opts) {

var rows = [];
return through(write, end);
return through.obj(write, end);
function write (row) { rows.push(row) }
function write (row, enc, next) { rows.push(row); next() }

@@ -27,3 +27,3 @@ function end () {

});
tr.queue(row);
tr.push(row);
});

@@ -33,6 +33,6 @@ }

rows.forEach(function (row) {
tr.queue(row);
tr.push(row);
});
}
tr.queue(null);
tr.push(null);
}

@@ -39,0 +39,0 @@

{
"name": "deps-sort",
"version": "0.1.2",
"description": "sort module-deps output for deterministic browserify bundles",
"main": "index.js",
"bin": {
"deps-sort": "bin/cmd.js"
},
"dependencies": {
"through": "~2.3.4",
"JSONStream": "~0.6.4",
"minimist": "~0.0.1"
},
"devDependencies": {
"tap": "~0.4.0"
},
"scripts": {
"test": "tap test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/substack/deps-sort.git"
},
"homepage": "https://github.com/substack/deps-sort",
"keywords": [
"dependency",
"graph",
"browser",
"browserify",
"module-deps",
"browser-pack",
"sorted",
"determinism"
],
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"license": "MIT"
"name": "deps-sort",
"version": "1.0.0",
"description": "sort module-deps output for deterministic browserify bundles",
"main": "index.js",
"bin": {
"deps-sort": "bin/cmd.js"
},
"dependencies": {
"JSONStream": "~0.8.4",
"minimist": "~0.2.0",
"through2": "~0.5.1"
},
"devDependencies": {
"tape": "^2.13.4"
},
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/substack/deps-sort.git"
},
"homepage": "https://github.com/substack/deps-sort",
"keywords": [
"dependency",
"graph",
"browser",
"browserify",
"module-deps",
"browser-pack",
"sorted",
"determinism"
],
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"license": "MIT"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc