From 721387cfdf47b3c024d3f58339ab59b5aff1dc5e Mon Sep 17 00:00:00 2001 From: Vasily Martynov Date: Fri, 2 Jan 2026 11:37:14 +1300 Subject: [PATCH] Remove OPENSSL_ENABLE_SHA1_SIGNATURES=1 as it is not required anymore Close #1323 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 70b2c4596..2ebe2cf60 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "format": "prettier --write .", "format:check": "prettier --check .", "toc": "./node_modules/.bin/doctoc Readme.md --github --maxlevel 3", - "cover": "OPENSSL_ENABLE_SHA1_SIGNATURES=1 nyc --extension=.ts --reporter=lcov --reporter=html --reporter=text mocha --no-parallel --timeout 30000 --exit test/*-test.js test/security/*.js", + "cover": "nyc --extension=.ts --reporter=lcov --reporter=html --reporter=text mocha --no-parallel --timeout 30000 --exit test/*-test.js test/security/*.js", "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v", "docs": "typedoc --out docs", "test": "mocha --timeout 15000 --bail --exit test/*-test.js test/security/*.js"