watskeburt 0.9.0 → 0.9.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/bin/version.mjs +1 -1
  2. package/package.json +28 -28
package/bin/version.mjs CHANGED
@@ -1 +1 @@
1
- export const VERSION = "0.9.0";
1
+ export const VERSION = "0.9.2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "watskeburt",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "List files changed since a git revision",
5
5
  "keywords": [
6
6
  "git",
@@ -44,30 +44,30 @@
44
44
  "README.md"
45
45
  ],
46
46
  "dependencies": {
47
- "commander": "9.4.1"
47
+ "commander": "10.0.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@types/mocha": "10.0.0",
51
- "@types/node": "18.11.9",
52
- "@typescript-eslint/eslint-plugin": "5.43.0",
50
+ "@types/mocha": "10.0.1",
51
+ "@types/node": "18.13.0",
52
+ "@typescript-eslint/eslint-plugin": "5.52.0",
53
53
  "c8": "7.12.0",
54
- "dependency-cruiser": "12.0.0",
55
- "esbuild": "0.15.14",
56
- "eslint": "8.28.0",
54
+ "dependency-cruiser": "12.9.0",
55
+ "esbuild": "0.17.8",
56
+ "eslint": "8.34.0",
57
57
  "eslint-config-moving-meadow": "4.0.2",
58
- "eslint-config-prettier": "8.5.0",
58
+ "eslint-config-prettier": "8.6.0",
59
59
  "eslint-plugin-budapestian": "5.0.1",
60
60
  "eslint-plugin-eslint-comments": "3.2.0",
61
- "eslint-plugin-import": "2.26.0",
61
+ "eslint-plugin-import": "2.27.5",
62
62
  "eslint-plugin-mocha": "10.1.0",
63
63
  "eslint-plugin-node": "11.1.0",
64
- "eslint-plugin-security": "1.5.0",
65
- "eslint-plugin-unicorn": "44.0.2",
66
- "mocha": "10.1.0",
64
+ "eslint-plugin-security": "1.7.1",
65
+ "eslint-plugin-unicorn": "45.0.2",
66
+ "mocha": "10.2.0",
67
67
  "npm-run-all": "4.1.5",
68
- "prettier": "2.7.1",
68
+ "prettier": "2.8.4",
69
69
  "ts-node": "10.9.1",
70
- "typescript": "4.9.3",
70
+ "typescript": "4.9.5",
71
71
  "upem": "7.3.1"
72
72
  },
73
73
  "engines": {
@@ -82,19 +82,19 @@
82
82
  "check": "npm-run-all --parallel --aggregate-output lint depcruise test:cover",
83
83
  "clean": "rm -rf dist",
84
84
  "test": "NODE_OPTIONS=--no-warnings mocha",
85
- "test:cover": "NODE_OPTIONS=--no-warnings c8 --check-coverage --statements 100 --branches 100 --functions 100 --lines 100 --exclude \"**/*.spec.ts\" --reporter text-summary --reporter html --reporter json-summary mocha",
86
- "depcruise": "depcruise bin dist src types --config --cache",
87
- "depcruise:graph": "depcruise bin src types --cache --include-only '^(bin|dist|src|types)' --config --output-type dot | dot -T svg | tee docs/dependency-graph.svg | depcruise-wrap-stream-in-html > docs/dependency-graph.html",
88
- "depcruise:graph:archi": "depcruise bin src --cache --include-only '^(bin|dist|src|types)' --config --output-type archi | dot -T svg | depcruise-wrap-stream-in-html > docs/high-level-dependency-graph.html",
89
- "depcruise:graph:dev": "depcruise bin dist src types --cache --include-only '^(bin|dist|src|types)' --prefix vscode://file/$(pwd)/ --config --output-type dot | dot -T svg | depcruise-wrap-stream-in-html | browser",
90
- "depcruise:graph:diff:dev": "depcruise bin dist src types --cache --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",
91
- "depcruise:graph:diff:mermaid": "depcruise bin dist src types --cache --include-only '^(bin|dist|src|types)' --config --output-type mermaid --output-to - --highlight \"$(node bin/cli.mjs $SHA -T regex)\"",
92
- "depcruise:html": "depcruise bin src types --progress --cache --config --output-type err-html --output-to dependency-violation-report.html",
93
- "depcruise:text": "depcruise bin src types --progress --cache --config --output-type text",
94
- "depcruise:focus": "depcruise bin src types --progress --cache --config --output-type text --focus",
95
- "depcruise:reaches": "depcruise bin src types --progress --cache --config --output-type text --reaches",
96
- "format": "prettier --check \"{bin,src,tools}/**/*.mjs\" \"types/**/*.ts\" \"*.{json,yml,md,js}\"",
97
- "format:check": "prettier --loglevel warn --write \"{bin,src,tools}/**/*.mjs\" \"types/**/*.ts\" \"*.{json,yml,md,js}\"",
85
+ "test:cover": "NODE_OPTIONS=--no-warnings c8 mocha",
86
+ "depcruise": "depcruise bin dist src types --config --output-type err",
87
+ "depcruise:graph": "depcruise bin src types --include-only '^(bin|dist|src|types)' --config --output-type dot | dot -T svg | tee docs/dependency-graph.svg | depcruise-wrap-stream-in-html > docs/dependency-graph.html",
88
+ "depcruise:graph:archi": "depcruise bin src --include-only '^(bin|dist|src|types)' --config --output-type archi | dot -T svg | depcruise-wrap-stream-in-html > docs/high-level-dependency-graph.html",
89
+ "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",
90
+ "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",
91
+ "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)\"",
92
+ "depcruise:html": "depcruise bin src types --progress --config --output-type err-html --output-to dependency-violation-report.html",
93
+ "depcruise:text": "depcruise bin src types --progress --config --output-type text",
94
+ "depcruise:focus": "depcruise bin src types --progress --config --output-type text --focus",
95
+ "depcruise:reaches": "depcruise bin src types --progress --config --output-type text --reaches",
96
+ "format": "prettier --write \"{bin,src,tools}/**/*.mjs\" \"types/**/*.ts\" \"*.{json,yml,md,js}\"",
97
+ "format:check": "prettier --loglevel warn --check \"{bin,src,tools}/**/*.mjs\" \"types/**/*.ts\" \"*.{json,yml,md,js}\"",
98
98
  "lint": "npm-run-all --parallel --aggregate-output format:check lint:eslint lint:types",
99
99
  "lint:fix": "npm-run-all --parallel --aggregate-output format lint:eslint:fix",
100
100
  "lint:eslint": "eslint bin src types tools --cache --cache-location node_modules/.cache/eslint/",