diff --git a/package.json b/package.json index 3bfd939f..8f00bf4a 100644 --- a/package.json +++ b/package.json @@ -78,7 +78,6 @@ "mysql": "^2.16.0", "nan": "^2.27.0", "node-gyp": "^12.3.0", - "npm": "^6.13.4", "oracledb": "^6.1.0", "passport": "^0.6.0", "passport-google-oauth": "^2.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 59d793ff..69a85d32 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -181,9 +181,6 @@ importers: node-gyp: specifier: ^12.3.0 version: 12.3.0 - npm: - specifier: ^6.13.4 - version: 6.14.18 oracledb: specifier: ^6.1.0 version: 6.10.0 @@ -5476,135 +5473,6 @@ packages: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} - npm@6.14.18: - resolution: {integrity: sha512-p3SjqSchSuNQUqbJBgwdv0L3O6bKkaSfQrQzJsskNpNKLg0g37c5xTXFV0SqTlX9GWvoGxBELVJMRWq0J8oaLA==} - engines: {node: 6 >=6.2.0 || 8 || >=9.3.0} - hasBin: true - bundledDependencies: - - abbrev - - ansicolors - - ansistyles - - aproba - - archy - - bin-links - - bluebird - - byte-size - - cacache - - call-limit - - chownr - - ci-info - - cli-columns - - cli-table3 - - cmd-shim - - columnify - - config-chain - - debuglog - - detect-indent - - detect-newline - - dezalgo - - editor - - figgy-pudding - - find-npm-prefix - - fs-vacuum - - fs-write-stream-atomic - - gentle-fs - - glob - - graceful-fs - - has-unicode - - hosted-git-info - - iferr - - imurmurhash - - infer-owner - - inflight - - inherits - - ini - - init-package-json - - is-cidr - - json-parse-better-errors - - JSONStream - - lazy-property - - libcipm - - libnpm - - libnpmaccess - - libnpmhook - - libnpmorg - - libnpmsearch - - libnpmteam - - libnpx - - lock-verify - - lockfile - - lodash._baseindexof - - lodash._baseuniq - - lodash._bindcallback - - lodash._cacheindexof - - lodash._createcache - - lodash._getnative - - lodash.clonedeep - - lodash.restparam - - lodash.union - - lodash.uniq - - lodash.without - - lru-cache - - meant - - mississippi - - mkdirp - - move-concurrently - - node-gyp - - nopt - - normalize-package-data - - npm-audit-report - - npm-cache-filename - - npm-install-checks - - npm-lifecycle - - npm-package-arg - - npm-packlist - - npm-pick-manifest - - npm-profile - - npm-registry-fetch - - npm-user-validate - - npmlog - - once - - opener - - osenv - - pacote - - path-is-inside - - promise-inflight - - qrcode-terminal - - query-string - - qw - - read-cmd-shim - - read-installed - - read-package-json - - read-package-tree - - read - - readable-stream - - readdir-scoped-modules - - request - - retry - - rimraf - - safe-buffer - - semver - - sha - - slide - - sorted-object - - sorted-union-stream - - ssri - - stringify-package - - tar - - text-table - - tiny-relative-date - - uid-number - - umask - - unique-filename - - unpipe - - update-notifier - - uuid - - validate-npm-package-license - - validate-npm-package-name - - which - - worker-farm - - write-file-atomic - nwsapi@2.2.23: resolution: {integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==} @@ -14565,8 +14433,6 @@ snapshots: dependencies: path-key: 3.1.1 - npm@6.14.18: {} - nwsapi@2.2.23: {} oauth-sign@0.9.0: {} diff --git a/test/integration/npm.js b/test/integration/npm.js deleted file mode 100644 index 31c3aa6e..00000000 --- a/test/integration/npm.js +++ /dev/null @@ -1,18 +0,0 @@ -const npm = require('npm'); -const install = require('npm/lib/install'); -const rimraf = require('rimraf'); - -npm.load((err) => { - if (err) { - throw err; - } - npm.config.set('audit', false); - npm.config.set('package-lock', false); - npm.config.set('progress', false); - if (process.env.NPM_REGISTRY_URL) { - npm.config.set('registry', process.env.NPM_REGISTRY_URL); - } - const args = [`lodash@4.1.17`]; - install('./asdf', args, () => {}); - rimraf.sync('./asdf'); -});