aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/which/package.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--node_modules/which/package.json52
1 files changed, 52 insertions, 0 deletions
diff --git a/node_modules/which/package.json b/node_modules/which/package.json
new file mode 100644
index 0000000..c6a4bf2
--- /dev/null
+++ b/node_modules/which/package.json
@@ -0,0 +1,52 @@
+{
+ "author": "GitHub Inc.",
+ "name": "which",
+ "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
+ "version": "6.0.1",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/npm/node-which.git"
+ },
+ "main": "lib/index.js",
+ "bin": {
+ "node-which": "./bin/which.js"
+ },
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^4.0.0"
+ },
+ "devDependencies": {
+ "@npmcli/eslint-config": "^6.0.0",
+ "@npmcli/template-oss": "4.28.1",
+ "tap": "^16.3.0"
+ },
+ "scripts": {
+ "test": "tap",
+ "lint": "npm run eslint",
+ "postlint": "template-oss-check",
+ "template-oss-apply": "template-oss-apply --force",
+ "lintfix": "npm run eslint -- --fix",
+ "snap": "tap",
+ "posttest": "npm run lint",
+ "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
+ },
+ "files": [
+ "bin/",
+ "lib/"
+ ],
+ "tap": {
+ "check-coverage": true,
+ "nyc-arg": [
+ "--exclude",
+ "tap-snapshots/**"
+ ]
+ },
+ "engines": {
+ "node": "^20.17.0 || >=22.9.0"
+ },
+ "templateOSS": {
+ "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
+ "version": "4.28.1",
+ "publish": "true"
+ }
+}