Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Fix packagejson #56

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 22 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,50 @@
{
"name": "@jupiterone/graph-sonarqube",
"version": "2.1.1",
"version": "2.1.2",
"description": "Sonarqube integration for JupiterOne",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/graph-sonarqube"
},
"license": "MPL-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"dist"
"src",
"jupiterone"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0 <19.x"
},
"scripts": {
"document": "j1-integration document",
"start": "j1-integration collect",
"graph": "j1-integration visualize",
"graph:types": "j1-integration visualize-types",
"graph:spec": "j1-integration visualize-types --project-path docs/spec --output-file ./.j1-integration/types-graph/index.spec.html",
"graph:dependencies": "j1-integration visualize-dependencies",
"validate:questions:dry": "j1-integration validate-question-file --dry-run",
"validate:questions": "j1-integration validate-question-file -a $MANAGED_QUESTIONS_JUPITERONE_ACCOUNT_ID -k $MANAGED_QUESTIONS_JUPITERONE_API_KEY",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --write '**/*.{ts,js,json,css,md,yml}'",
"format": "prettier --write \"**/*.{ts,js,json,css,md,yml}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,css,md,yml}\"",
"type-check": "tsc",
"test": "jest",
"test:env": "LOAD_ENV=1 yarn test",
"test:ci": "yarn lint && yarn type-check && yarn test",
"build": "tsc -p tsconfig.dist.json --declaration",
"prepush": "yarn lint && yarn type-check && jest --changedSince main",
"prepack": "yarn build"
"test:ci": "yarn format:check && yarn lint && yarn type-check && yarn test",
"build": "tsc -p tsconfig.dist.json --declaration && cp README.md dist/README.md && cp -r jupiterone/ dist/jupiterone/",
"prepush": "yarn format:check && yarn lint && yarn type-check && jest --changedSince main",
"postversion": "cp package.json ./dist/package.json"
},
"peerDependencies": {
"@jupiterone/integration-sdk-core": "^13.1.0"
"@jupiterone/integration-sdk-core": "^13.2.0"
},
"devDependencies": {
"@jupiterone/integration-sdk-core": "^13.1.0",
"@jupiterone/integration-sdk-dev-tools": "^13.1.0",
"@jupiterone/integration-sdk-testing": "^13.1.0",
"@jupiterone/integration-sdk-core": "^13.2.0",
"@jupiterone/integration-sdk-dev-tools": "^13.2.0",
"@jupiterone/integration-sdk-testing": "^13.2.0",
"@types/node": "^22.0.2",
"@types/node-fetch": "^2.6.11"
},
Expand Down
Loading