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.