deployphp/node_modules/which/package.json

51 lines
1.1 KiB
JSON
Raw Normal View History

2020-11-10 22:12:02 +00:00
{
2023-03-28 15:15:22 +00:00
"author": "GitHub Inc.",
2021-10-15 20:41:21 +00:00
"name": "which",
"description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
2023-03-28 15:15:22 +00:00
"version": "3.0.0",
2021-10-15 20:41:21 +00:00
"repository": {
"type": "git",
2023-03-28 15:15:22 +00:00
"url": "https://github.com/npm/node-which.git"
2020-11-10 22:12:02 +00:00
},
2023-03-28 15:15:22 +00:00
"main": "lib/index.js",
2020-11-10 22:12:02 +00:00
"bin": {
2023-03-28 15:15:22 +00:00
"node-which": "./bin/which.js"
2020-11-10 22:12:02 +00:00
},
2021-10-15 20:41:21 +00:00
"license": "ISC",
2020-11-10 22:12:02 +00:00
"dependencies": {
"isexe": "^2.0.0"
},
"devDependencies": {
2023-03-28 15:15:22 +00:00
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.8.0",
"tap": "^16.3.0"
2020-11-10 22:12:02 +00:00
},
2021-10-15 20:41:21 +00:00
"scripts": {
"test": "tap",
2023-03-28 15:15:22 +00:00
"lint": "eslint \"**/*.js\"",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "npm run lint -- --fix",
"snap": "tap",
"posttest": "npm run lint"
2020-11-10 22:12:02 +00:00
},
"files": [
2023-03-28 15:15:22 +00:00
"bin/",
"lib/"
2020-11-10 22:12:02 +00:00
],
"tap": {
2023-03-28 15:15:22 +00:00
"check-coverage": true,
"nyc-arg": [
"--exclude",
"tap-snapshots/**"
]
2020-11-10 22:12:02 +00:00
},
2021-10-15 20:41:21 +00:00
"engines": {
2023-03-28 15:15:22 +00:00
"node": "^14.17.0 || ^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.8.0"
2021-10-15 20:41:21 +00:00
}
2020-11-10 22:12:02 +00:00
}