forked from jelhub/scimgateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.18 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.18 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
{
"name": "scimgateway",
"version": "2.1.9",
"description": "SCIM Gateway",
"author": "Jarle Elshaug <jarle.elshaug@gmail.com> (https://elshaug.xyz)",
"license": "MIT",
"main": "lib/scimgateway.js",
"scripts": {
"postinstall": "node lib/postinstall.js",
"start": "node index.js",
"test": "mocha -R spec ./test"
},
"bin": {
"scimgateway": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jelhub/scimgateway.git"
},
"keywords": [
"scim",
"gateway",
"proxy",
"azure",
"ca",
"identity",
"manager",
"provisioning"
],
"engines": {
"node": ">=7.6.0"
},
"dependencies": {
"callsite": "^1.0.0",
"dot-object": "^1.9.0",
"https-proxy-agent": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.8.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"lokijs": "^1.5.7",
"node-machine-id": "1.1.9",
"nodemailer": "^5.1.1",
"passport": "^0.4.0",
"passport-azure-ad": "^4.1.0",
"soap": "^0.26.0",
"tedious": "^6.6.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"supertest": "^3.3.0"
}
}