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"
]
}
[6.16.0] - 2021-08-25
j1-integration collect --project-path
to allow for executing against a
project in any locationj1-integration sync --project-path
to allow for executing against a
project in any locationj1-integration run --project-path
to allow for executing against a
project in any locationj1-integration run --development
to match other commands that connect to
JupiterOne development environmentj1-integration visualize --output-file
to allow for specifying the
output file pathj1-integration visualize --data-dir
value to the error content of
the generated file when there were no entities or relationships to renderj1-integration visualize --data-dir
to support absolute path,
complementing added support for --project-path
on other commandsj1-integration document --output-file
to reflect that it is a path
relative to --project-path
EPERM: operation not permitted, symlink
FAQs
A collection of developer tools that will assist with building integrations.
The npm package @jupiterone/integration-sdk-dev-tools receives a total of 1,380 weekly downloads. As such, @jupiterone/integration-sdk-dev-tools popularity was classified as popular.
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.