PATH:
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
bin-links
/
lib
const checkBin = require('./check-bin.js') const normalize = require('npm-normalize-package-bin') const checkBins = async ({ pkg, path, top, global, force }) => { // always ok to clobber when forced // always ok to clobber local bins, or when forced if (force || !global || !top) { return } pkg = normalize(pkg) if (!pkg.bin) { return } await Promise.all(Object.keys(pkg.bin) .map(bin => checkBin({ bin, path, top, global, force }))) } module.exports = checkBins
[-] bin-target.js
[edit]
[-] link-gently.js
[edit]
[+]
..
[-] link-bin.js
[edit]
[-] check-bins.js
[edit]
[-] get-prefix.js
[edit]
[-] fix-bin.js
[edit]
[-] man-target.js
[edit]
[-] is-windows.js
[edit]
[-] shim-bin.js
[edit]
[-] index.js
[edit]
[-] link-bins.js
[edit]
[-] link-mans.js
[edit]
[-] check-bin.js
[edit]
[-] get-node-modules.js
[edit]
[-] get-paths.js
[edit]