Socket
Socket
Sign inDemoInstall

@jupiterone/integration-sdk-dev-tools

Package Overview
Dependencies
725
Maintainers
1
Versions
244
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @jupiterone/integration-sdk-dev-tools

A collection of developer tools that will assist with building integrations.


Version published
Weekly downloads
1.6K
increased by8.32%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

12.6.0 - 2024-04-24

  • http-client: add option to pass body as plain text

Readme

Source

@jupiterone/integration-sdk-dev-tools

This package contains some common dependencies and configuration files used in JupiterOne integrations.

This module is opinionated and bundles in the following dependencies:

  • typescript
  • prettier
  • jest
  • eslint
  • husky
  • lint-staged

For convenience, this package also comes bundled with the @jupiterone/integration-sdk-cli module.

Installation

npm install -D @jupiterone/integration-sdk-dev-tools

# or

yarn add -D @jupiterone/integration-sdk-dev-tools

Usage

Create prettier.config.js at root of your project that contains:

module.exports = require('@jupiterone/integration-sdk-dev-tools/config/prettier');

Create lint-staged.config.js at root of your project that contains:

module.exports = require('@jupiterone/integration-sdk-dev-tools/config/lint-staged');

Create husky.config.js at root of your project that contains:

module.exports = require('@jupiterone/integration-sdk-dev-tools/config/husky');

Create jest.config.js at root of your project that contains:

module.exports = require('@jupiterone/integration-sdk-dev-tools/config/jest');

Create tsconfig.json at root of your project that contains:

{
  "extends": "./node_modules/@jupiterone/integration-sdk-dev-tools/config/typescript",
  "compilerOptions": {
    "outDir": "dist"
  },
  "exclude": ["dist"]
}

Create a .eslintrc at the root of your project that contains:

{
  "root": true,
  "extends": [
    "./node_modules/@jupiterone/integration-sdk-dev-tools/config/eslint.json"
  ]
}

FAQs

Last updated on 24 Apr 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc