Socket
Book a DemoInstallSign in
Socket

uphold-scripts

Package Overview
Dependencies
Maintainers
3
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uphold-scripts

Set of scripts and dev dependencies to help with common tasks on Uphold projects

latest
Source
npmnpm
Version
0.10.2
Version published
Weekly downloads
3.2K
13.13%
Maintainers
3
Weekly downloads
 
Created
Source

uphold-scripts

npm

Set of NPM scripts and dev dependencies to help with common tasks on Uphold projects.

Available Scripts

  • changelog - generate changelog file for a given version
  • lint - run eslint to lint JS files
  • release - cut a new release for a new version
  • test - run the test suite with jest pre-configured
  • version - tag a new version and generate its changelog

Installation

Install 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

License

MIT

FAQs

Package last updated on 16 Oct 2025

Did you know?

Socket

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.

Install

Related posts