
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
uphold-scripts
Advanced tools
Set of scripts and dev dependencies to help with common tasks on Uphold projects
Set of NPM scripts and dev dependencies to help with common tasks on Uphold projects.
changelog - generate changelog file for a given versionlint - run eslint to lint JS filesrelease - cut a new release for a new versiontest - run the test suite with jest pre-configuredversion - tag a new version and generate its changelogInstall the package via yarn:
❯ yarn add uphold-scripts --dev
or via npm:
❯ npm install uphold-scripts --save-dev
And then configure package.json to look like this:
{
"scripts": {
"changelog": "uphold-scripts changelog $npm_package_version",
"lint": "uphold-scripts lint .",
"lint-staged": "lint-staged -q",
"release": "uphold-scripts release",
"test": "uphold-scripts test",
"version": "uphold-scripts version"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.{js,mjs}": ["uphold-scripts lint"]
}
}
To use the ESLint validations, this is the minimal .eslintrc.yml required:
extends: uphold
MIT
FAQs
Set of scripts and dev dependencies to help with common tasks on Uphold projects
The npm package uphold-scripts receives a total of 2,519 weekly downloads. As such, uphold-scripts popularity was classified as popular.
We found that uphold-scripts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.