forked from JupiterOne-Archives/graph-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.85 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
95
96
97
98
99
100
101
102
{
"name": "@jupiterone/graph-azure",
"version": "5.36.2",
"description": "A graph conversion tool for https://azure.microsoft.com/.",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": "https://github.com/JupiterOne/graph-azure",
"license": "MPL-2.0",
"files": [
"src",
"jupiterone"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"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",
"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",
"document": "j1-integration document && yarn document:diagnostic-settings",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --write '**/*.{ts,js,json,css,md,yml}'",
"type-check": "tsc",
"test": "yarn validate:questions:dry && yarn jest",
"test:env": "LOAD_ENV=1 yarn test",
"test:ci": "yarn lint && yarn type-check && yarn test",
"prepush": "yarn lint && yarn type-check && jest --changedSince main",
"document:diagnostic-settings": "./tools/cli/j1-azure-integration document-diagnostic-settings",
"precommit": "yarn document:diagnostic-settings && git add docs/jupiterone.md && lint-staged",
"build": "./build.sh",
"tf": "cd terraform && env `grep -v '^#' .env` terraform $1"
},
"dependencies": {
"@azure/arm-advisor": "^2.0.0",
"@azure/arm-apimanagement": "^6.0.0",
"@azure/arm-appservice": "^7.0.0",
"@azure/arm-authorization": "^8.3.2",
"@azure/arm-batch": "^4.0.0",
"@azure/arm-cdn": "^5.0.0",
"@azure/arm-compute": "^14.0.0",
"@azure/arm-containerinstance": "^6.0.0",
"@azure/arm-containerregistry": "^8.0.0",
"@azure/arm-containerservice": "^14.1.0",
"@azure/arm-cosmosdb": "^7.0.0",
"@azure/arm-dns": "^4.0.0",
"@azure/arm-eventgrid": "^9.0.0",
"@azure/arm-keyvault": "^1.2.1",
"@azure/arm-locks": "^1.2.2",
"@azure/arm-managementgroups": "^1.1.0",
"@azure/arm-mariadb": "^1.4.0",
"@azure/arm-monitor": "^6.0.0",
"@azure/arm-mysql": "^3.3.0",
"@azure/arm-network": "^20.0.0",
"@azure/arm-policy": "^3.1.0",
"@azure/arm-policyinsights": "^4.0.0",
"@azure/arm-postgresql": "^4.4.0",
"@azure/arm-privatedns": "^2.0.0",
"@azure/arm-rediscache": "^4.0.0",
"@azure/arm-resources": "^4.0.0",
"@azure/arm-security": "^2.0.0",
"@azure/arm-servicebus": "^4.0.0",
"@azure/arm-sql": "^7.0.1",
"@azure/arm-storage": "^15.1.0",
"@azure/arm-subscriptions": "^2.0.0",
"@azure/data-tables": "^12.1.2",
"@azure/identity": "^1.0.2",
"@azure/keyvault-keys": "^4.0.2",
"@azure/keyvault-secrets": "^4.3.0",
"@azure/ms-rest-nodeauth": "^2.0.5",
"@azure/storage-blob": "^12.5.0",
"@azure/storage-queue": "^12.4.0",
"@lifeomic/attempt": "^3.0.0",
"@microsoft/microsoft-graph-client": "^2.0.0",
"@microsoft/microsoft-graph-types": "^1.10.0",
"cross-fetch": "^3.0.4",
"date-fns": "^2.24.0",
"lodash.map": "^4.6.0",
"lodash.snakecase": "^4.1.1"
},
"resolutions": {
"@azure/ms-rest-azure-js": "^2.0.0",
"@azure/ms-rest-js": "^2.0.0"
},
"peerDependencies": {
"@jupiterone/integration-sdk-core": "^8.2.1"
},
"devDependencies": {
"@jupiterone/integration-sdk-core": "^8.2.1",
"@jupiterone/integration-sdk-dev-tools": "^8.2.1",
"@jupiterone/integration-sdk-testing": "^8.2.1",
"@types/lodash.map": "^4.6.13",
"@types/lodash.snakecase": "^4.1.6",
"@types/node": "^13.11.1",
"@types/uuid": "^8.3.0",
"dotenv": "^8.2.0",
"ts-node": "^9.1.1",
"uuid": "^8.3.2"
}
}