jpegtran-bin
Advanced tools
Comparing version 6.0.1 to 7.0.0
{ | ||
"name": "jpegtran-bin", | ||
"version": "6.0.1", | ||
"version": "7.0.0", | ||
"description": "jpegtran (part of libjpeg-turbo) bin-wrapper that makes it seamlessly available as a local dependency", | ||
@@ -29,3 +29,3 @@ "license": "MIT", | ||
"engines": { | ||
"node": "^12.20.0 || ^14.13.1 || >=16.0.0" | ||
"node": "^14.13.1 || >=16.0.0" | ||
}, | ||
@@ -59,9 +59,9 @@ "scripts": { | ||
"devDependencies": { | ||
"ava": "^3.15.0", | ||
"ava": "^4.2.0", | ||
"bin-check": "^4.0.1", | ||
"compare-size": "^3.0.0", | ||
"execa": "^5.1.1", | ||
"tempy": "^2.0.0", | ||
"xo": "^0.45.0" | ||
"execa": "^6.1.0", | ||
"tempy": "^3.0.0", | ||
"xo": "^0.48.0" | ||
} | ||
} |
@@ -6,4 +6,4 @@ import fs from 'node:fs'; | ||
import test from 'ava'; | ||
import execa from 'execa'; | ||
import tempy from 'tempy'; | ||
import {execa} from 'execa'; | ||
import {temporaryDirectory} from 'tempy'; | ||
import binCheck from 'bin-check'; | ||
@@ -21,3 +21,3 @@ import binBuild from 'bin-build'; | ||
const temporary = tempy.directory(); | ||
const temporary = temporaryDirectory(); | ||
const cfg = [ | ||
@@ -42,3 +42,3 @@ './configure --disable-shared', | ||
test('minify a JPG', async t => { | ||
const temporary = tempy.directory(); | ||
const temporary = temporaryDirectory(); | ||
const src = fileURLToPath(new URL('fixtures/test.jpg', import.meta.url)); | ||
@@ -45,0 +45,0 @@ const dest = path.join(temporary, 'test.jpg'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1660970