source: trip-planner-front/node_modules/npm-normalize-package-bin/README.md@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 398 bytes
Line 
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.
Note: See TracBrowser for help on using the repository browser.