-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 843 Bytes
/
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
{
"name": "okta_node_app",
"version": "1.0.0",
"description": "A nodejs application for user provisioning with okta server using SCIM 2.0 protocol standards.",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swamy526/node_okta_app.git"
},
"keywords": [
"node",
"okta",
"scim2.0"
],
"author": "swamy kurakula",
"license": "ISC",
"bugs": {
"url": "https://github.com/swamy526/node_okta_app/issues"
},
"homepage": "https://github.com/swamy526/node_okta_app#readme",
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.2",
"express-session": "^1.15.3",
"hogan-express": "^0.5.2",
"passport": "^0.3.2",
"passport-saml": "^0.15.0",
"uuid": "^3.0.1"
}
}