-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
77 lines (77 loc) · 2.07 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
{
"name": "scimgateway",
"version": "5.0.15",
"type": "module",
"description": "Using SCIM protocol as a gateway for user provisioning to other endpoints",
"author": "Jarle Elshaug <jarle.elshaug@gmail.com> (https://elshaug.xyz)",
"homepage": "https://elshaug.xyz",
"license": "MIT",
"main": "lib/scimgateway.ts",
"module": "./index.ts",
"scripts": {
"postinstall": "bun ./lib/postinstall.ts",
"start": "bun index.ts",
"start:node": "node --experimental-strip-types index.ts",
"hot": "bun --hot run ./index.ts",
"test": "bun test ./test/index.ts",
"lint": "eslint --config eslint.config.js ."
},
"bin": {
"scimgateway": "./index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/jelhub/scimgateway.git"
},
"keywords": [
"scim",
"gateway",
"stream",
"iga",
"provisioning",
"entra"
],
"engines": {
"node": ">=22.6.0"
},
"dependencies": {
"@ldapjs/asn1": "^2.0.0",
"@nats-io/jetstream": "^3.0.0-35",
"@nats-io/nats-core": "^3.0.0-48",
"@nats-io/transport-node": "^3.0.0-33",
"@types/ldapjs": "^3.0.6",
"@types/lokijs": "^1.5.14",
"@types/tedious": "^4.0.14",
"dot-object": "^2.1.5",
"fold-to-ascii": "^5.0.1",
"https-proxy-agent": "^7.0.6",
"is-in-subnet": "^4.0.1",
"jsonwebtoken": "^9.0.2",
"ldapjs": "^3.0.7",
"lokijs": "^1.5.12",
"mongodb": "^6.12.0",
"node-machine-id": "1.1.12",
"nodemailer": "^6.9.16",
"passport": "^0.7.0",
"passport-azure-ad": "^4.3.5",
"saml": "^3.0.1",
"winston": "^3.17.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.10.1",
"@types/bun": "latest",
"@types/dot-object": "^2.1.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "latest",
"@types/nodemailer": "^6.4.14",
"@types/passport": "^1.0.16",
"@types/passport-azure-ad": "^4.3.6",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.13.0",
"supertest": "^7.0.0"
}
}