codeworth 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +5 -2
package/index.js CHANGED
@@ -6,7 +6,7 @@ import path from 'node:path';
6
6
 
7
7
  // Configuration
8
8
  const DEFAULT_RATE = 10.77;
9
- const IGNORED_DIRS = new Set(['node_modules', '.git', 'dist', 'build', 'coverage', '.idea', '.vscode', '.next', 'target']);
9
+ const IGNORED_DIRS = new Set(['node_modules', '.git', 'dist', 'build', 'coverage', '.idea', '.vscode', '.next', 'target', '.venv', 'venv']);
10
10
  const IGNORED_FILES = new Set(['.DS_Store', 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb']);
11
11
  const BINARY_EXTENSIONS = new Set([
12
12
  '.png', '.jpg', '.jpeg', '.gif', '.ico', '.svg', '.webp',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeworth",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "CLI tool to calculate traditional software valuation based on LOC.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -9,10 +9,13 @@
9
9
  "type": "module",
10
10
  "license": "MIT",
11
11
  "author": "David Weaver",
12
+ "scripts": {
13
+ "test": "echo \"No tests specified\" && exit 0"
14
+ },
12
15
  "keywords": [
13
16
  "valuation",
14
17
  "loc",
15
18
  "software",
16
19
  "cli"
17
20
  ]
18
- }
21
+ }