portable-executable-signature
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -10,3 +10,3 @@ "use strict"; | ||
const NAME = exports.NAME = "portable-executable-signature"; | ||
const VERSION = exports.VERSION = "2.0.1"; | ||
const VERSION = exports.VERSION = "2.0.2"; | ||
//# sourceMappingURL=meta.js.map |
{ | ||
"name": "portable-executable-signature", | ||
"description": "Package for reading and writing PE code signatures", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"keywords": [ | ||
@@ -23,2 +23,3 @@ "portable-executable", | ||
{ | ||
"types": "./dts/index.d.ts", | ||
"import": "./esm/index.mjs", | ||
@@ -46,5 +47,11 @@ "require": "./cjs/index.js", | ||
"build": "npm run build:dts && npm run build:esm && npm run build:cjs", | ||
"test:esm": "node -r source-map-support/register --test esm", | ||
"test:cjs": "node -r source-map-support/register --test cjs", | ||
"test-legacy:esm": "node -r source-map-support/register --test esm", | ||
"test-legacy:cjs": "node -r source-map-support/register --test cjs", | ||
"test-legacy": "npm run test-legacy:esm && npm run test-legacy:cjs", | ||
"test:esm": "node -r source-map-support/register --test 'esm/**/*.mjs'", | ||
"test:cjs": "node -r source-map-support/register --test 'cjs/**/*.js'", | ||
"test": "npm run test:esm && npm run test:cjs", | ||
"all-legacy:esm": "npm run clean && npm run build:esm && npm run test-legacy:esm && npm run lint && npm run formatted", | ||
"all-legacy:cjs": "npm run clean && npm run build:cjs && npm run test-legacy:cjs && npm run lint && npm run formatted", | ||
"all-legacy": "npm run clean && npm run build && npm run test-legacy && npm run lint && npm run formatted", | ||
"all:esm": "npm run clean && npm run build:esm && npm run test:esm && npm run lint && npm run formatted", | ||
@@ -62,13 +69,13 @@ "all:cjs": "npm run clean && npm run build:cjs && npm run test:cjs && npm run lint && npm run formatted", | ||
"@babel/cli": "^7.23.0", | ||
"@babel/core": "^7.23.0", | ||
"@babel/preset-env": "^7.22.20", | ||
"@babel/preset-typescript": "^7.23.0", | ||
"@types/node": "^20.8.0", | ||
"@typescript-eslint/eslint-plugin": "^6.7.3", | ||
"@typescript-eslint/parser": "^6.7.3", | ||
"@babel/core": "^7.23.2", | ||
"@babel/preset-env": "^7.23.2", | ||
"@babel/preset-typescript": "^7.23.2", | ||
"@types/node": "^20.8.10", | ||
"@typescript-eslint/eslint-plugin": "^6.9.1", | ||
"@typescript-eslint/parser": "^6.9.1", | ||
"babel-plugin-esm-resolver": "^2.3.2", | ||
"babel-plugin-search-and-replace": "^1.1.1", | ||
"eslint": "^8.50.0", | ||
"eslint": "^8.53.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-import": "^2.28.1", | ||
"eslint-plugin-import": "^2.29.0", | ||
"eslint-plugin-jsdoc": "^46.8.2", | ||
@@ -75,0 +82,0 @@ "prettier": "^3.0.3", |
Sorry, the diff of this file is not supported yet
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
77724