
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@jupiterone/integration-sdk-dev-tools
Advanced tools
A collection of developer tools that will assist with building integrations.
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.
npm install -D @jupiterone/integration-sdk-dev-tools
# or
yarn add -D @jupiterone/integration-sdk-dev-tools
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
A collection of developer tools that will assist with building integrations.
We found that @jupiterone/integration-sdk-dev-tools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.