Closed stevenvachon closed 10 years ago
bin and lib paths are already relative to the package.json file.
bin
lib
bin only needs to be an object if the executable name differs from name or when supplying multiple names.
name
files makes npm install --production installs much lighter.
files
npm install --production
scripts don't need to target executables directly as they are added to PATH during npm install.
scripts
PATH
npm install
Sorry for the ridiculous amount of commits; I was using github.com's editor and missed things.
thx!
No prob!
bin
andlib
paths are already relative to the package.json file.bin
only needs to be an object if the executable name differs fromname
or when supplying multiple names.files
makesnpm install --production
installs much lighter.scripts
don't need to target executables directly as they are added toPATH
duringnpm install
.