-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.92 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.92 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
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
{
"name": "ghec-sso-cli",
"version": "0.1.2",
"description": "CLI tool to automate GitHub Enterprise Cloud SSO setup with Entra ID",
"main": "dist/index.js",
"bin": {
"ghec-sso": "./dist/index.js"
},
"scripts": {
"build": "tsc && npm run copy-templates",
"copy-templates": "cpx \"templates/**/*\" dist/templates",
"build:bundle": "esbuild dist/index.js --bundle --platform=node --target=node18 --outfile=dist/bundle.js --external:fsevents",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"start:web": "node dist/web-server.js",
"dev:web": "ts-node src/web-server.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"postinstall": "npm run build",
"package": "npm run build && npm run build:bundle && pkg dist/bundle.js -t node18-win-x64,node18-macos-x64,node18-linux-x64 -o bin/ghec-sso",
"package:win": "npm run build && npm run build:bundle && pkg dist/bundle.js -t node18-win-x64 -o bin/ghec-sso.exe",
"package:all": "npm run build && npm run build:bundle && pkg dist/bundle.js -t node18-win-x64,node18-macos-x64,node18-linux-x64 -o bin/ghec-sso"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@azure/identity": "^4.0.1",
"@azure/msal-node": "^2.6.6",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@octokit/auth-oauth-device": "^7.1.1",
"@octokit/rest": "^20.0.2",
"@types/node-fetch": "^2.6.12",
"applicationinsights": "^3.9.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"conf": "^10.2.0",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"inquirer": "^8.2.6",
"marked": "^15.0.12",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"open": "^8.4.2",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/express": "^4.17.23",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.11",
"@types/multer": "^1.4.13",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"cpx": "^1.5.0",
"esbuild": "^0.25.5",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"pkg": "^5.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"pkg": {
"assets": [
"node_modules/open/xdg-open",
"templates/*.md"
]
},
"keywords": [
"github",
"enterprise-cloud",
"sso",
"entra-id",
"azure",
"saml",
"cli"
],
"author": "GitHub",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benleane83/ghec-sso-setup.git"
},
"bugs": {
"url": "https://github.com/benleane83/ghec-sso-setup/issues"
},
"homepage": "https://github.com/benleane83/ghec-sso-setup#readme",
"files": [
"dist/",
"templates/"
]
}