This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
generated from JupiterOne-Archives/integration-template
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
86 lines (86 loc) · 2.71 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
{
"name": "@jupiterone/graph-google-cloud",
"version": "3.3.10",
"description": "A graph conversion tool for https://cloud.google.com/",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/graph-google-cloud"
},
"license": "MPL-2.0",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src",
"jupiterone"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0 <19.x"
},
"scripts": {
"start": "LOG_LEVEL=trace 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",
"validate:questions:dry": "j1-integration validate-question-file --dry-run",
"validate:questions": "j1-integration validate-question-file -a $JUPITERONE_ACCOUNT_ID -k $JUPITERONE_API_KEY",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --write '**/*.{ts,js,json,css,md,yml}'",
"type-check": "tsc",
"test:env": "LOAD_ENV=1 yarn test",
"test": "yarn validate:questions:dry && NODE_OPTIONS='--max-old-space-size=4096' yarn jest",
"test:ci": "yarn lint && yarn type-check && yarn test",
"build": "./build.sh",
"prepush": "yarn lint && yarn type-check && jest --changedSince main",
"postversion": "cp package.json ./dist/package.json",
"tf": "cd terraform && env `grep -v '^#' .env` terraform $1",
"create-env-file": "yarn ts-node ./scripts/createEnvFile $1",
"document:permissions": " yarn ts-node commands/documentPermissions.ts documentPermissions"
},
"peerDependencies": {
"@jupiterone/integration-sdk-core": "^11.0.3"
},
"devDependencies": {
"@jupiterone/integration-sdk-core": "^11.0.3",
"@jupiterone/integration-sdk-dev-tools": "^11.0.3",
"@jupiterone/integration-sdk-testing": "^11.0.3",
"@types/bunyan": "^1.8.6",
"@types/bunyan-format": "^0.2.3",
"@types/node-fetch": "^2.5.10",
"auto": "^10.37.4",
"bunyan": "^1.8.15",
"bunyan-format": "^0.2.1",
"cac": "^6.7.3",
"dotenv": "^9.0.2",
"mutton": "^0.5.1",
"node-fetch": "^2.6.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"@lifeomic/attempt": "^3.0.0",
"commander": "^9.4.1",
"gaxios": "^6.1.1",
"google-auth-library": "^9.4.1",
"googleapis": "^129.0.0",
"lodash.get": "^4.4.2",
"p-map": "^4.0.0"
},
"auto": {
"plugins": [
[
"npm",
{
"setRcToken": false,
"publishFolder": "./dist"
}
],
"released"
],
"onlyPublishWithReleaseLabel": true,
"shipit": {
"prerelease": false
}
}
}