From 25003b2b44a9b1268ae3677fcebc7dedbd9539a5 Mon Sep 17 00:00:00 2001 From: Brian Engert Date: Sat, 1 Jun 2024 16:21:12 -0500 Subject: [PATCH] fix: cleanup dep list --- LICENSE | 21 +++++++++++++++++++++ package-lock.json | 34 ++++++---------------------------- package.json | 5 +---- 3 files changed, 28 insertions(+), 32 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7126ed5 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Soliant Consulting + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/package-lock.json b/package-lock.json index 1420ea8..8fc5aed 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,18 +9,15 @@ "version": "1.0.0", "license": "MIT", "dependencies": { - "@types/node-fetch": "^2.6.11", - "fm-data-api-client": "^1.4.0", - "form-data": "^4.0.0", - "into-stream": "^8.0.1" + "dotenv": "^16.3.1", + "fm-data-api-client": "^1.4.0" }, "bin": { - "fm-xml-download": "dist/index.js" + "fm-saxml-delivery": "dist/cli.js" }, "devDependencies": { "@tsconfig/node18": "^18.2.2", "@types/node": "^20.10.4", - "dotenv": "^16.3.1", "tsx": "^4.7.3", "typescript": "~5.4.0" } @@ -409,19 +406,11 @@ "version": "20.13.0", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.13.0.tgz", "integrity": "sha512-FM6AOb3khNkNIXPnHFDYaHerSv8uN22C91z098AnGccVu+Pcdhi+pNUFDi0iLmPIsVE0JBD0KVS7mzUYt4nRzQ==", + "dev": true, "dependencies": { "undici-types": "~5.26.4" } }, - "node_modules/@types/node-fetch": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", - "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", - "dependencies": { - "@types/node": "*", - "form-data": "^4.0.0" - } - }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", @@ -455,7 +444,6 @@ "version": "16.4.5", "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", - "dev": true, "engines": { "node": ">=12" }, @@ -585,17 +573,6 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "node_modules/into-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-8.0.1.tgz", - "integrity": "sha512-Vp2df7Utjs/1/sv0Vlj2X4u2e2yaCrcMd4T9u0D9B36XvxIOBHA2JIZTXCp2TPCa7w/ebwWVkXhbp9At1wJ0zg==", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", @@ -728,7 +705,8 @@ "node_modules/undici-types": { "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true }, "node_modules/util-deprecate": { "version": "1.0.2", diff --git a/package.json b/package.json index 3d00306..2e98c68 100644 --- a/package.json +++ b/package.json @@ -20,15 +20,12 @@ "devDependencies": { "@tsconfig/node18": "^18.2.2", "@types/node": "^20.10.4", - "dotenv": "^16.3.1", "tsx": "^4.7.3", "typescript": "~5.4.0" }, "dependencies": { - "@types/node-fetch": "^2.6.11", "fm-data-api-client": "^1.4.0", - "form-data": "^4.0.0", - "into-stream": "^8.0.1" + "dotenv": "^16.3.1" }, "release": { "branches": ["main"]