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

Commit

Permalink
fix package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
RonaldEAM committed Aug 7, 2024
1 parent d6ebe66 commit 936a93e
Showing 1 changed file with 21 additions and 13 deletions.
34 changes: 21 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,44 @@
"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

0 comments on commit 936a93e

Please sign in to comment.