-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 KB
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
{
"name": "n8n-nodes-msgraph-multitenant",
"version": "0.2.0",
"type": "commonjs",
"description": "n8n community node for calling the Microsoft Graph API across multiple Azure AD tenants",
"keywords": [
"n8n-community-node-package",
"n8n",
"microsoft",
"graph",
"msgraph",
"azure",
"azure-ad",
"multi-tenant",
"multitenant",
"office365",
"microsoft365"
],
"license": "MIT",
"homepage": "https://stream8.nl",
"author": "dblonk <info@ikbendion.nl>",
"repository": {
"type": "git",
"url": "https://github.com/ikbendion/n8n-nodes-msgraph-multitenant"
},
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch"
},
"files": [
"dist",
"icons"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/MsGraphOAuth2Api.credentials.js"
],
"nodes": [
"dist/nodes/MsGraph.node.js"
]
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^8.57.1",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"typescript": "^4.9.0"
},
"peerDependencies": {
"n8n-core": ">=1.0.0",
"n8n-workflow": ">=1.0.0"
}
}