-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
57
58
{
"name": "@intility/azure-app-redirect-uris",
"version": "1.2.2",
"description": "CLI to add and remove redirect uris from an Azure App Registration.",
"main": "./bin/cli.js",
"bin": {
"azure-app-redirect-uris": "./bin/cli.js"
},
"files": [
"bin"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch"
},
"homepage": "https://github.com/intility/azure-app-redirect-uris",
"repository": {
"type": "git",
"url": "https://github.com/intility/azure-app-redirect-uris.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"azure",
"npm",
"app",
"redirect uri"
],
"author": "Intility",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^10.0.1",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"rollup": "^4.60.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0"
},
"dependencies": {
"@azure/identity": "^4.13.1",
"@microsoft/microsoft-graph-client": "^3.0.7",
"commander": "^15.0.0",
"isomorphic-fetch": "^3.0.0"
}
}