-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 904 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
35
36
37
38
39
40
{
"name": "sf-oauth",
"version": "0.0.0-development",
"description": "Utility to generate SuccessFactors OAuth SAML assertions with the option to integrate with Postman",
"main": "./src/serve.js",
"engines": {
"node": ">=18"
},
"bin": "./src/cli.js",
"scripts": {
"start": "node ./src/serve.js",
"semantic-release": "semantic-release",
"postinstall": "patch-package"
},
"keywords": [
"SuccessFactors",
"SAP",
"OAuth",
"Postman"
],
"author": "Pieter Janssens",
"license": "GNU GPLv3",
"dependencies": {
"arg": "^5.0.2",
"cli-color": "^2.0.3",
"express": "^4.18.2",
"patch-package": "^8.0.0",
"saml": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/piejanssens/sf-oauth.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"semantic-release": "^20.1.1"
}
}