Skip to content

Commit

Permalink
deps: update [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
reggi committed Oct 2, 2024
1 parent b1c4770 commit ab40dab
Show file tree
Hide file tree
Showing 69 changed files with 143 additions and 829 deletions.
16 changes: 6 additions & 10 deletions node_modules/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@
!/@npmcli/git/node_modules/@npmcli/promise-spawn
!/@npmcli/git/node_modules/hosted-git-info
!/@npmcli/git/node_modules/ini
!/@npmcli/git/node_modules/isexe
!/@npmcli/git/node_modules/npm-install-checks
!/@npmcli/git/node_modules/npm-package-arg
!/@npmcli/git/node_modules/npm-pick-manifest
!/@npmcli/git/node_modules/proc-log
!/@npmcli/git/node_modules/validate-npm-package-name
!/@npmcli/git/node_modules/which
!/@npmcli/installed-package-contents
!/@npmcli/map-workspaces
!/@npmcli/map-workspaces/node_modules/
Expand All @@ -51,6 +53,7 @@
!/@npmcli/metavuln-calculator/node_modules/@npmcli/run-script
!/@npmcli/metavuln-calculator/node_modules/cacache
!/@npmcli/metavuln-calculator/node_modules/hosted-git-info
!/@npmcli/metavuln-calculator/node_modules/isexe
!/@npmcli/metavuln-calculator/node_modules/json-parse-even-better-errors
!/@npmcli/metavuln-calculator/node_modules/make-fetch-happen
!/@npmcli/metavuln-calculator/node_modules/normalize-package-data
Expand All @@ -64,6 +67,7 @@
!/@npmcli/metavuln-calculator/node_modules/unique-filename
!/@npmcli/metavuln-calculator/node_modules/unique-slug
!/@npmcli/metavuln-calculator/node_modules/validate-npm-package-name
!/@npmcli/metavuln-calculator/node_modules/which
!/@npmcli/name-from-folder
!/@npmcli/node-gyp
!/@npmcli/package-json
Expand All @@ -72,13 +76,7 @@
!/@npmcli/package-json/node_modules/@npmcli/
/@npmcli/package-json/node_modules/@npmcli/*
!/@npmcli/package-json/node_modules/@npmcli/git
!/@npmcli/package-json/node_modules/isexe
!/@npmcli/package-json/node_modules/which
!/@npmcli/promise-spawn
!/@npmcli/promise-spawn/node_modules/
/@npmcli/promise-spawn/node_modules/*
!/@npmcli/promise-spawn/node_modules/isexe
!/@npmcli/promise-spawn/node_modules/which
!/@npmcli/query
!/@npmcli/redact
!/@npmcli/run-script
Expand All @@ -87,8 +85,6 @@
!/@npmcli/run-script/node_modules/@npmcli/
/@npmcli/run-script/node_modules/@npmcli/*
!/@npmcli/run-script/node_modules/@npmcli/node-gyp
!/@npmcli/run-script/node_modules/isexe
!/@npmcli/run-script/node_modules/which
!/@pkgjs/
/@pkgjs/*
!/@pkgjs/parseargs
Expand Down Expand Up @@ -229,12 +225,14 @@
!/node-gyp/node_modules/@npmcli/fs
!/node-gyp/node_modules/abbrev
!/node-gyp/node_modules/cacache
!/node-gyp/node_modules/isexe
!/node-gyp/node_modules/make-fetch-happen
!/node-gyp/node_modules/nopt
!/node-gyp/node_modules/proc-log
!/node-gyp/node_modules/ssri
!/node-gyp/node_modules/unique-filename
!/node-gyp/node_modules/unique-slug
!/node-gyp/node_modules/which
!/nopt
!/nopt/node_modules/
/nopt/node_modules/*
Expand Down Expand Up @@ -267,11 +265,9 @@
!/pacote/node_modules/@npmcli/git
!/pacote/node_modules/@npmcli/installed-package-contents
!/pacote/node_modules/ignore-walk
!/pacote/node_modules/isexe
!/pacote/node_modules/npm-bundled
!/pacote/node_modules/npm-normalize-package-bin
!/pacote/node_modules/npm-packlist
!/pacote/node_modules/which
!/parse-conflict-json
!/path-key
!/path-scurry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"author": "GitHub Inc.",
"name": "which",
"description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
"version": "5.0.0",
"version": "4.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/npm/node-which.git"
"url": "https://github.com/npm/node-which.git"
},
"main": "lib/index.js",
"bin": {
Expand All @@ -16,19 +16,18 @@
"isexe": "^3.1.1"
},
"devDependencies": {
"@npmcli/eslint-config": "^5.0.0",
"@npmcli/template-oss": "4.23.3",
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.18.0",
"tap": "^16.3.0"
},
"scripts": {
"test": "tap",
"lint": "npm run eslint",
"lint": "eslint \"**/*.js\"",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "npm run eslint -- --fix",
"lintfix": "npm run lint -- --fix",
"snap": "tap",
"posttest": "npm run lint",
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
"posttest": "npm run lint"
},
"files": [
"bin/",
Expand All @@ -42,11 +41,17 @@
]
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
"node": "^16.13.0 || >=18.0.0"
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.23.3",
"ciVersions": [
"16.13.0",
"16.x",
"18.0.0",
"18.x"
],
"version": "4.18.0",
"publish": "true"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"author": "GitHub Inc.",
"name": "which",
"description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
"version": "5.0.0",
"version": "4.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/npm/node-which.git"
"url": "https://github.com/npm/node-which.git"
},
"main": "lib/index.js",
"bin": {
Expand All @@ -16,19 +16,18 @@
"isexe": "^3.1.1"
},
"devDependencies": {
"@npmcli/eslint-config": "^5.0.0",
"@npmcli/template-oss": "4.23.3",
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.18.0",
"tap": "^16.3.0"
},
"scripts": {
"test": "tap",
"lint": "npm run eslint",
"lint": "eslint \"**/*.js\"",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "npm run eslint -- --fix",
"lintfix": "npm run lint -- --fix",
"snap": "tap",
"posttest": "npm run lint",
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
"posttest": "npm run lint"
},
"files": [
"bin/",
Expand All @@ -42,11 +41,17 @@
]
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
"node": "^16.13.0 || >=18.0.0"
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.23.3",
"ciVersions": [
"16.13.0",
"16.x",
"18.0.0",
"18.x"
],
"version": "4.18.0",
"publish": "true"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"author": "GitHub Inc.",
"name": "which",
"description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
"version": "5.0.0",
"version": "4.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/npm/node-which.git"
"url": "https://github.com/npm/node-which.git"
},
"main": "lib/index.js",
"bin": {
Expand All @@ -16,19 +16,18 @@
"isexe": "^3.1.1"
},
"devDependencies": {
"@npmcli/eslint-config": "^5.0.0",
"@npmcli/template-oss": "4.23.3",
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.18.0",
"tap": "^16.3.0"
},
"scripts": {
"test": "tap",
"lint": "npm run eslint",
"lint": "eslint \"**/*.js\"",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "npm run eslint -- --fix",
"lintfix": "npm run lint -- --fix",
"snap": "tap",
"posttest": "npm run lint",
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
"posttest": "npm run lint"
},
"files": [
"bin/",
Expand All @@ -42,11 +41,17 @@
]
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
"node": "^16.13.0 || >=18.0.0"
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.23.3",
"ciVersions": [
"16.13.0",
"16.x",
"18.0.0",
"18.x"
],
"version": "4.18.0",
"publish": "true"
}
}
15 changes: 0 additions & 15 deletions node_modules/pacote/node_modules/isexe/LICENSE

This file was deleted.

46 changes: 0 additions & 46 deletions node_modules/pacote/node_modules/isexe/dist/cjs/index.js

This file was deleted.

3 changes: 0 additions & 3 deletions node_modules/pacote/node_modules/isexe/dist/cjs/options.js

This file was deleted.

3 changes: 0 additions & 3 deletions node_modules/pacote/node_modules/isexe/dist/cjs/package.json

This file was deleted.

67 changes: 0 additions & 67 deletions node_modules/pacote/node_modules/isexe/dist/cjs/posix.js

This file was deleted.

Loading

0 comments on commit ab40dab

Please sign in to comment.