This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
generated from JupiterOne-Archives/integration-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "@jupiterone/graph-kubernetes",
"version": "2.4.0",
"description": "A JupiterOne Integration for Kubernetes",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/graph-kubernetes"
},
"license": "MPL-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0 <19.x"
},
"scripts": {
"start": "LOAD_KUBERNETES_CONFIG_FROM_DEFAULT=true yarn execute",
"execute": "./scripts/run.sh",
"collect": "./scripts/collect.sh",
"graph": "j1-integration visualize",
"graph:types": "j1-integration visualize-types",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --write '**/*.{ts,js,json,css,md,yml}'",
"type-check": "tsc",
"test": "KUBECONFIG=$(pwd)/test/.kube/config jest",
"test:env": "LOAD_ENV=1 jest",
"test:ci": "yarn lint && yarn type-check && yarn test",
"build": "tsc -p tsconfig.dist.json --declaration",
"prepush": "yarn lint && yarn type-check && yarn test --changedSince main",
"prepack": "yarn build"
},
"devDependencies": {
"@jupiterone/integration-sdk-testing": "^13.1.1",
"@types/node": "^20.11.0"
},
"dependencies": {
"@jupiterone/integration-sdk-dev-tools": "^13.1.1",
"@kubernetes/client-node": "^0.20.0",
"node-fetch": "2.6.1"
},
"peerDependencies": {
"@jupiterone/integration-sdk-core": "^13.1.1"
}
}