Socket
Socket
Sign inDemoInstall

bundle-name

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bundle-name - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

9

index.js
'use strict';
var execFile = require('child_process').execFile;
var runApplescript = require('run-applescript');

@@ -7,9 +7,10 @@ module.exports = function (bundleId, cb) {

execFile('osascript', ['-e', script], function (err, stdout) {
runApplescript(script, function (err, res) {
if (err) {
return cb(err);
cb(err);
return;
}
cb(err, stdout.trim());
cb(null, res);
});
};
{
"name": "bundle-name",
"version": "1.0.0",
"version": "1.0.1",
"description": "Get bundle name from a bundle identifier (OS X): com.apple.Safari => Safari",

@@ -44,2 +44,5 @@ "license": "MIT",

],
"dependencies": {
"run-applescript": "^1.0.0"
},
"devDependencies": {

@@ -46,0 +49,0 @@ "mocha": "*"

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