This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
generated from JupiterOne-Archives/integration-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
94 lines (94 loc) · 3.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@jupiterone/graph-github",
"version": "5.1.2",
"description": "A JupiterOne Integration",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/graph-github"
},
"license": "MPL-2.0",
"main": "src/index.js",
"types": "src/index.d.ts",
"engines": {
"node": ">=18.0.0 <19.x"
},
"files": [
"src",
"jupiterone"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "j1-integration collect --disable-schema-validation",
"start:step": "j1-integration collect --step fetch-codescanning-alerts --disable-schema-validation --no-cache",
"graph": "j1-integration visualize",
"graph:types": "j1-integration visualize-types",
"graph:dependencies": "j1-integration visualize-dependencies",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"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 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",
"graph:spec": "j1-integration visualize-types --project-path docs/spec --output-file ./.j1-integration/types-graph/index.spec.html",
"validate:questions": "j1-integration validate-question-file -a $MANAGED_QUESTIONS_JUPITERONE_ACCOUNT_ID -k $MANAGED_QUESTIONS_JUPITERONE_API_KEY",
"validate:questions:dry": "j1-integration validate-question-file --dry-run",
"visualize:types": "j1-integration visualize-types",
"visualize:spec": "j1-integration visualize-types -p docs/spec -o .j1-integration/types-graph/index.spec.html"
},
"dependencies": {
"@octokit/auth-app": "^6.0.3",
"@octokit/auth-token": "^4.0.0",
"@octokit/core": "^5.1.0",
"@octokit/graphql": "^7.0.2",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.1.3",
"@octokit/request": "^8.2.0",
"@octokit/request-error": "^5.0.1",
"@octokit/rest": "^20.0.2",
"dayjs": "^1.11.10",
"lodash": "^4.17.21",
"node-fetch": "2",
"semver": "^7.3.7"
},
"peerDependencies": {
"@jupiterone/integration-sdk-core": "^11.2.0"
},
"devDependencies": {
"@jupiterone/integration-sdk-core": "^11.2.0",
"@jupiterone/integration-sdk-dev-tools": "^11.2.0",
"@jupiterone/integration-sdk-testing": "^11.2.0",
"@octokit/graphql-schema": "^13.4.0",
"@octokit/types": "^12.5.0",
"@types/node": "^20.8.2",
"@types/node-fetch": "^2.6.11",
"@types/semver": "^7.3.13",
"auto": "^10.36.5",
"mockdate": "^3.0.5"
},
"auto": {
"plugins": [
[
"npm",
{
"setRcToken": false,
"publishFolder": "./dist"
}
],
"released"
],
"onlyPublishWithReleaseLabel": true,
"prereleaseBranches": [
"beta"
],
"shipit": {}
},
"resolutions": {
"jest": "27.5.1"
}
}