1# npm-normalize-package-bin 2 3Turn any flavor of allowable package.json bin into a normalized object. 4 5## API 6 7```js 8const normalize = require('npm-normalize-package-bin') 9const pkg = {name: 'foo', bin: 'bar'} 10console.log(normalize(pkg)) // {name:'foo', bin:{foo: 'bar'}} 11``` 12 13Also strips out weird dots and slashes to prevent accidental and/or 14malicious bad behavior when the package is installed. 15