Socket
Socket
Sign inDemoInstall

@xoi/gps-metadata-remover

Package Overview
Dependencies
7
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.2 to 2.0.0

build/index.js

8

CHANGES.md

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

# v2.0.0
- Dependency Updates
- Removes jDataView dependency, DataView is stable now
- Switch to Typescript
- Switch to vite + vitest
- Use Logger instead of console.log
# v1.1.2

@@ -2,0 +10,0 @@ - Dependency Updates

33

package.json
{
"name": "@xoi/gps-metadata-remover",
"version": "1.1.2",
"version": "2.0.0",
"description": "Removes GPS metadata from images and videos",

@@ -9,3 +9,3 @@ "repository": {

},
"main": "lib/index.js",
"main": "build/index.js",
"author": "alindner@xoi.io",

@@ -18,25 +18,15 @@ "license": "apache",

"files": [
"lib"
"build"
],
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"Base64": "^1.1.0",
"debug": "^4.1.1",
"jdataview": "^2.5.0"
"crc": "^4.3.2",
"debug": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "^7.11.0",
"@babel/plugin-transform-modules-commonjs": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-flow": "^7.11.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"flow-bin": "^0.109.0",
"flow-copy-source": "^2.0.9",
"ffprobe": "^1.1.0",
"ffprobe-static": "^3.0.0",
"ffprobe-static": "^3.1.0",
"gm": "^1.23.1",
"hasha": "^5.2.0",
"is-corrupted-jpeg": "^1.0.2",
"jest": "^26.6.3",
"nodemon": "2.0.20",

@@ -46,9 +36,12 @@ "prettier": "^1.18.2",

"prettier-eslint-cli": "^5.0.0",
"uuid": "^3.3.2"
"uuid": "^3.3.2",
"vite": "^5.1.4",
"vitest": "^1.3.1"
},
"scripts": {
"build": "if [ -d lib ]; then rm lib/*; fi; yarn run babel src/ -d lib/ && flow-copy-source src lib",
"build": "yarn typecheck && vite build",
"prepublish": "yarn run build",
"test": "jest",
"test-multiple": "for i in {1..10}; do jest --runInBand --silent || (echo 'Failed after $i attempts' && break); done",
"test": "vitest run --disable-console-intercept",
"typecheck": "yarn tsc -p tsconfig.json --noEmit",
"test-multiple": "for i in {1..10}; do vitest run --disable-console-intercept || (echo 'Failed after $i attempts' && break); done",
"remove-metadata-batch": "node scripts/batchRemoveMetadata.js"

@@ -55,0 +48,0 @@ },

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