@datapos/datapos-development 0.3.134 → 0.3.136

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/README.md +3 -0
  2. package/package.json +14 -11
package/README.md CHANGED
@@ -33,6 +33,8 @@ registry=https://registry.npmjs.org/
33
33
 
34
34
  ## Utilities
35
35
 
36
+ Designed to be run from `package.json` scripts.
37
+
36
38
  The `src/index.ts' file exposes the following utilities:
37
39
 
38
40
  | Name | Notes |
@@ -69,6 +71,7 @@ The following table lists top-level production and peer dependencies. All these
69
71
  | Name | Type | Installed | Latest | Latest Modified |
70
72
  | :---------------------- | :--: | :-------: | :-----: | :----------------------- |
71
73
  | @datapos/datapos-shared | MIT | 0.3.252 | 0.3.252 | 2025-11-25T16:48:28.532Z |
74
+ | node-pty | MIT | 1.0.0 | 1.0.0 | 2025-11-03T11:45:17.960Z |
72
75
 
73
76
  <!-- DEPENDENCY_LICENSES_END -->
74
77
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-development",
3
- "version": "0.3.134",
3
+ "version": "0.3.136",
4
4
  "description": "A library of utilities for managing the Data Positioning repositories.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",
@@ -26,15 +26,18 @@
26
26
  "dist"
27
27
  ],
28
28
  "dependencies": {
29
- "@datapos/datapos-shared": "^0.3.252",
30
- "node-pty": "^1.0.0"
29
+ "@datapos/datapos-shared": "^0.3.252"
31
30
  },
32
31
  "devDependencies": {
32
+ "@types/eslint-plugin-security": "^3.0.0",
33
33
  "@types/node": "^24.10.1",
34
34
  "@typescript-eslint/eslint-plugin": "^8.48.0",
35
35
  "@typescript-eslint/parser": "^8.48.0",
36
36
  "eslint": "^9.39.1",
37
37
  "eslint-plugin-import": "^2.32.0",
38
+ "eslint-plugin-security": "^3.0.1",
39
+ "eslint-plugin-sonarjs": "^3.0.5",
40
+ "eslint-plugin-unicorn": "^62.0.0",
38
41
  "jiti": "^2.6.1",
39
42
  "license-report": "^6.8.1",
40
43
  "license-report-check": "^0.1.2",
@@ -53,10 +56,9 @@
53
56
  "zod": "^4.1.13"
54
57
  },
55
58
  "scripts": {
56
- "audit": "npm audit",
59
+ "audit": "npm run _audit:vulnerabilities && npm audit",
57
60
  "build": "vite build",
58
- "check:updates": "npm outdated; npm-check-updates -i",
59
- "check:vulnerabilities": "npm run _check:owaspDependencyCheck; npm run _check:owaspBageInsertiions",
61
+ "check": "npm outdated; npm-check-updates -i",
60
62
  "document": "npm run _document:licenceReportJSON && npm run _document:licenceReportMarkdown && npm run _document:licenceReportCheck && npm run _document:insertLicensesIntoReadme && npm run _document:licenceTree && npm run _document:licenceTreeCheck",
61
63
  "format": "prettier --write src/",
62
64
  "lint": "eslint .",
@@ -65,14 +67,15 @@
65
67
  "sync": "npm run _bump:version && npm run _sync:withGitHub",
66
68
  "test": "vitest",
67
69
  "update:dataPosDeps": "npm run _update:sharedDep",
70
+ "_audit:vulnerabilities": "npm run _audit:owaspDependencyCheck && npm run _audit:owaspBageInsertiions",
71
+ "_audit:owaspDependencyCheck": "set -a && source .env && set +a && owasp-dependency-check --project \"@datapos/datapos-development\" --enableRetired --nvdApiKey \"$NVD_API_KEY\" --nodePackageSkipDevDependencies",
72
+ "_audit:owaspBageInsertiions": "node -e \"import('./dist/datapos-development.es.js').then(m => m.insertOWASPDependencyCheckBadgeIntoReadme())\"",
68
73
  "_bump:version": "node -e \"import('./dist/datapos-development.es.js').then(m => m.bumpVersion())\"",
69
- "_check:owaspDependencyCheck": "set -a && source .env && set +a && owasp-dependency-check --project \"@datapos/datapos-development\" --enableRetired --nvdApiKey \"$NVD_API_KEY\" --nodePackageSkipDevDependencies",
70
- "_check:owaspBageInsertiions": "node -e \"import('./dist/datapos-development.es.js').then(m => m.insertOWASPDependencyCheckBadgeIntoReadme())\"",
71
74
  "_document:licenceReportJSON": "license-report --only=prod,peer --department.value=n/a --licensePeriod=n/a --material=n/a --relatedTo.value=n/a > licenses.json",
72
75
  "_document:licenceReportMarkdown": "license-report --config license-report-config.json --only=prod,peer --output=markdown > licenses.md",
73
- "_document:licenceReportCheck": "license-report-check --source ./licenses.json --allowed 'MIT' --allowed 'n/a' --allowed 'Apache-2.0' --allowed 'CC0-1.0' --output=table",
76
+ "_document:licenceReportCheck": "license-report-check --source ./licenses.json --allowed 'MIT' --output=table",
74
77
  "_document:licenceTree": "license-report-recursive --only=prod,peer --department.value=n/a --licensePeriod=n/a --material=n/a --relatedTo.value=n/a --recurse --output=tree > licenseTree.json",
75
- "_document:licenceTreeCheck": "license-report-check --source ./licenseTree.json --allowed 'MIT' --allowed 'n/a' --allowed 'Apache-2.0' --allowed 'CC0-1.0' --output=table",
78
+ "_document:licenceTreeCheck": "license-report-check --source ./licenseTree.json --allowed 'MIT' --output=table",
76
79
  "_document:insertLicensesIntoReadme": "node -e \"import('./dist/datapos-development.es.js').then(m => m.insertLicensesIntoReadme())\"",
77
80
  "_sync:withGitHub": "node -e \"import('./dist/datapos-development.es.js').then(m => m.syncWithGitHub())\"",
78
81
  "_update:sharedDep": "npm install @datapos/datapos-shared@latest"
@@ -81,4 +84,4 @@
81
84
  "node": ">=22.0.0",
82
85
  "npm": ">=11.0.0"
83
86
  }
84
- }
87
+ }