wishthis/node_modules/which/package.json

31 lines
787 B
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-07 07:06:43 +00:00
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
"name": "which",
"description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
"version": "1.3.1",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/node-which.git"
2022-01-21 08:28:41 +00:00
},
2022-04-07 07:06:43 +00:00
"main": "which.js",
"bin": "./bin/which",
"license": "ISC",
2022-01-21 08:28:41 +00:00
"dependencies": {
"isexe": "^2.0.0"
},
"devDependencies": {
"mkdirp": "^0.5.0",
"rimraf": "^2.6.2",
"tap": "^12.0.1"
},
2022-02-23 16:41:13 +00:00
"scripts": {
2022-04-07 07:06:43 +00:00
"test": "tap test/*.js --cov",
2022-02-23 16:41:13 +00:00
"changelog": "bash gen-changelog.sh",
2022-04-07 07:06:43 +00:00
"postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}"
2022-02-23 16:41:13 +00:00
},
2022-04-07 07:06:43 +00:00
"files": [
"which.js",
"bin/which"
]
2022-01-21 08:28:41 +00:00
}