/usr/lib/node_modules/npm/scripts
NameSizeModeActions
changelog.js30700644editdlrm
clean-old.sh42660755editdlrm
dep-update2940755editdlrm
dev-dep-update2920755editdlrm
docs-build.js8250644editdlrm
gen-changelog4200755editdlrm
gen-dev-ignores.js3500644editdlrm
install.sh55970755editdlrm
maketest18410755editdlrm
pr40540755editdlrm
publish-tag.js1510644editdlrm
release.sh8890644editdlrm
relocate.sh6730755editdlrm
update-authors.sh1970755editdlrm
update-dist-tags.js35460644editdlrm
Edit: /usr/lib/node_modules/npm/scripts/gen-changelog (420B)
#!/bin/sh # Usage: gen-changelog [comittish] # Reads all the commits since comittish and produces changelog entries in # our style as best as it can, appendning them to CHANGELOG.md. If it # encounters a git error it won't modify CHANGELOG.md # @iarna uses this as the first step in producing changelogs for a release. (node $(npm prefix)/scripts/changelog.js "$@"; cat CHANGELOG.md) > new.md && mv new.md CHANGELOG.md