Socket
Socket
Sign inDemoInstall

watskeburt

Package Overview
Dependencies
1
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.10.0 to 0.10.1

bin/cli.js

41

package.json
{
"name": "watskeburt",
"version": "0.10.0",
"version": "0.10.1",
"description": "List files changed since a git revision",

@@ -22,5 +22,5 @@ "keywords": [

"license": "MIT",
"bin": "bin/cli.mjs",
"bin": "bin/cli.js",
"main": "dist/cjs-bundle.cjs",
"module": "dist/esm-bundle.mjs",
"module": "dist/esm/main.js",
"type": "module",

@@ -31,3 +31,3 @@ "sideEffects": false,

{
"import": "./dist/esm-bundle.mjs",
"import": "./dist/esm/main.js",
"require": "./dist/cjs-bundle.cjs"

@@ -53,10 +53,10 @@ },

"@types/mocha": "10.0.1",
"@types/node": "18.14.0",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"c8": "7.13.0",
"dependency-cruiser": "12.9.0",
"esbuild": "0.17.8",
"eslint": "8.34.0",
"dependency-cruiser": "12.10.2",
"esbuild": "0.17.12",
"eslint": "8.36.0",
"eslint-config-moving-meadow": "4.0.2",
"eslint-config-prettier": "8.6.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-budapestian": "5.0.1",

@@ -68,3 +68,3 @@ "eslint-plugin-eslint-comments": "3.2.0",

"eslint-plugin-security": "1.7.1",
"eslint-plugin-unicorn": "45.0.2",
"eslint-plugin-unicorn": "46.0.0",
"mocha": "10.2.0",

@@ -74,3 +74,3 @@ "npm-run-all": "4.1.5",

"ts-node": "10.9.1",
"typescript": "4.9.5",
"typescript": "5.0.2",
"upem": "7.3.2"

@@ -82,7 +82,8 @@ },

"scripts": {
"build": "npm-run-all --sequential build:version build:dist",
"build:version": "node tools/get-version.mjs > bin/version.mjs",
"build": "npm-run-all --sequential build:clean build:version build:dist",
"build:version": "ts-node --esm tools/get-version.ts > bin/version.js",
"build:clean": "rm -rf dist/*",
"build:dist": "npm-run-all build:dist:*",
"build:dist:cjs": "esbuild src/main.ts --format=cjs --target=node14 --platform=node --bundle --global-name=wkbtcjs --minify --outfile=dist/cjs-bundle.cjs",
"build:dist:esm": "esbuild src/main.ts --format=esm --target=node14 --platform=node --bundle --global-name=wkbtesm --minify --outfile=dist/esm-bundle.mjs",
"build:dist:esm": "tsc",
"check": "npm-run-all --parallel --aggregate-output lint depcruise test:cover",

@@ -96,4 +97,4 @@ "clean": "rm -rf dist",

"depcruise:graph:dev": "depcruise bin dist src types --include-only '^(bin|dist|src|types)' --prefix vscode://file/$(pwd)/ --config --output-type dot | dot -T svg | depcruise-wrap-stream-in-html | browser",
"depcruise:graph:diff:dev": "depcruise bin dist src types --include-only '^(bin|dist|src|types)' --highlight \"$(node bin/cli.mjs main -T regex)\" --prefix vscode://file/$(pwd)/ --config --output-type dot | dot -T svg | depcruise-wrap-stream-in-html | browser",
"depcruise:graph:diff:mermaid": "depcruise bin dist src types --include-only '^(bin|dist|src|types)' --config --output-type mermaid --output-to - --highlight \"$(node bin/cli.mjs $SHA -T regex)\"",
"depcruise:graph:diff:dev": "depcruise bin dist src types --include-only '^(bin|dist|src|types)' --highlight \"$(node bin/cli.js main -T regex)\" --prefix vscode://file/$(pwd)/ --config --output-type dot | dot -T svg | depcruise-wrap-stream-in-html | browser",
"depcruise:graph:diff:mermaid": "depcruise bin dist src types --include-only '^(bin|dist|src|types)' --config --output-type mermaid --output-to - --highlight \"$(node bin/cli.js $SHA -T regex)\"",
"depcruise:html": "depcruise bin src types --progress --config --output-type err-html --output-to dependency-violation-report.html",

@@ -103,4 +104,4 @@ "depcruise:text": "depcruise bin src types --progress --config --output-type text",

"depcruise:reaches": "depcruise bin src types --progress --config --output-type text --reaches",
"format": "prettier --write \"{bin,src,tools}/**/*.mjs\" \"types/**/*.ts\" \"*.{json,yml,md,js}\"",
"format:check": "prettier --loglevel warn --check \"{bin,src,tools}/**/*.mjs\" \"types/**/*.ts\" \"*.{json,yml,md,js}\"",
"format": "prettier --write \"{bin,src,tools}/**/*.{js,ts}\" \"types/**/*.ts\" \"*.{json,yml,md,js}\"",
"format:check": "prettier --loglevel warn --check \"{bin,src,tools}/**/*.ts\" \"types/**/*.ts\" \"*.{json,yml,md,js}\"",
"lint": "npm-run-all --parallel --aggregate-output format:check lint:eslint lint:types",

@@ -110,3 +111,3 @@ "lint:fix": "npm-run-all --parallel --aggregate-output format lint:eslint:fix",

"lint:eslint:fix": "eslint bin src types tools --fix --cache --cache-location node_modules/.cache/eslint/",
"lint:types": "tsc",
"lint:types": "tsc --noEmit",
"scm:stage": "git add .",

@@ -113,0 +114,0 @@ "update-dependencies": "run-s upem:update upem:install lint:fix check",

Sorry, the diff of this file is not supported yet

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