![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@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 1 open source maintainer 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.