lyxaira.glass 74ca844f42 Actualizacion cambios generados: seccion #12, #14 y #15. | пре 4 година | |
---|---|---|
.. | ||
.github | пре 4 година | |
test | пре 4 година | |
.npmignore | пре 4 година | |
LICENSE | пре 4 година | |
README.md | пре 4 година | |
index.js | пре 4 година | |
package-lock.json | пре 4 година | |
package.json | пре 4 година |
Turn any flavor of allowable package.json bin into a normalized object.
const normalize = require('npm-normalize-package-bin')
const pkg = {name: 'foo', bin: 'bar'}
console.log(normalize(pkg)) // {name:'foo', bin:{foo: 'bar'}}
Also strips out weird dots and slashes to prevent accidental and/or malicious bad behavior when the package is installed.