提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
398 B

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