-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.14 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
{
"name": "@ssofy/javascript-sdk",
"version": "1.2.0",
"description": "Official SSOfy Javascript SDK.",
"keywords": [
"ssofy",
"sso",
"login",
"auth",
"authentication",
"oauth",
"oauth2",
"sdk",
"node",
"browser",
"javascript",
"js"
],
"license": "MIT",
"author": "SSOfy <support@ssofy.com>",
"homepage": "https://www.ssofy.com",
"repository": {
"type": "git",
"url": "https://github.com/ssofy/javascript-sdk.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "ENV=BROWSER npx webpack && ENV=NODE tsc",
"test": "jest --verbose"
},
"dependencies": {
"@openid/appauth": "^1.3.1",
"axios": "^1.6.7",
"glob": "^8.1.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.10",
"jest": "^29.7.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
}
}