New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gps2json

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

gps2json - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

3

package.json
{
"name": "gps2json",
"version": "1.0.4",
"version": "1.0.5",
"description": "CLI to pull photo meta GPS data into a JSON file",

@@ -23,3 +23,2 @@ "main": "src/gps2json.js",

"dependencies": {
"app-root-path": "^2.1.0",
"exif": "^0.6.0"

@@ -26,0 +25,0 @@ },

@@ -6,3 +6,2 @@ #!/usr/bin/env node

const process = require( "process" );
const app_root = require('app-root-path').path;
const ExifImage = require('exif').ExifImage;

@@ -13,4 +12,4 @@ const args = process.argv.filter((itm)=> { return !/\/bin\/gps2json/g.test(itm) && !/\/bin\/node/g.test(itm) ? itm : undefined});

name: 'metadata',
folder: app_root,
output: app_root
folder: process.env.PWD,
output: process.env.PWD
}

@@ -27,3 +26,3 @@

})[0].split('=')[1];
options[option] = options[option].indexOf('./') > -1 ? path.join(app_root, options[option]) : options[option];
options[option] = options[option].indexOf('./') > -1 ? path.join(process.env.PWD, options[option]) : options[option];
}

@@ -30,0 +29,0 @@ }

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