Socket
Socket
Sign inDemoInstall

opener

Package Overview
Dependencies
0
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.4.0 to 1.4.1

2

LICENSE.txt

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

Copyright © 2012–2014 Domenic Denicola <domenic@domenicdenicola.com>
Copyright © 2012–2015 Domenic Denicola <d@domenic.me>

@@ -3,0 +3,0 @@ This work is free. You can redistribute it and/or modify it under the

@@ -38,2 +38,7 @@ #!/usr/bin/env node

// so we need to add a dummy empty-string window title: http://stackoverflow.com/a/154090/3191
//
// Additionally, on Windows ampersand needs to be escaped when passed to "start"
args = args.map(function(value) {
return value.replace(/&/g, '^&');
});
args = ["/c", "start", '""'].concat(args);

@@ -40,0 +45,0 @@ }

{
"name": "opener",
"description": "Opens stuff, like webpages and files and executables, cross-platform",
"version": "1.4.0",
"author": "Domenic Denicola <domenic@domenicdenicola.com> (http://domenic.me/)",
"version": "1.4.1",
"author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "git://github.com/domenic/opener.git"
},
"bugs": "http://github.com/domenic/opener/issues",
"repository": "domenic/opener",
"main": "opener.js",
"bin": "opener.js",
"files": [
"opener.js"
],
"scripts": {

@@ -18,4 +17,4 @@ "lint": "jshint opener.js"

"devDependencies": {
"jshint": "^2.5.4"
"jshint": "^2.6.3"
}
}
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc