package.json
1 { 2 "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)", 3 "name": "which", 4 "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", 5 "version": "1.3.1", 6 "repository": { 7 "type": "git", 8 "url": "git://github.com/isaacs/node-which.git" 9 }, 10 "main": "which.js", 11 "bin": "./bin/which", 12 "license": "ISC", 13 "dependencies": { 14 "isexe": "^2.0.0" 15 }, 16 "devDependencies": { 17 "mkdirp": "^0.5.0", 18 "rimraf": "^2.6.2", 19 "tap": "^12.0.1" 20 }, 21 "scripts": { 22 "test": "tap test/*.js --cov", 23 "changelog": "bash gen-changelog.sh", 24 "postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}" 25 }, 26 "files": [ 27 "which.js", 28 "bin/which" 29 ] 30 }