-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathpackage.json
49 lines (49 loc) · 1.02 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
{
"name": "oidc-client-ts",
"version": "2.0.0-alpha0",
"description": "OpenID Connect (OIDC) & OAuth2 client library",
"repository": {
"type": "git",
"url": "git+https://github.com:pamapa/oidc-client-ts.git"
},
"homepage": "https://github.com/pamapa/oidc-client-ts#readme",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/oidc-client-ts.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"authentication",
"oauth2",
"oidc",
"openid",
"OpenID Connect"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint"
},
"dependencies": {
"jsrsasign": "^10.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@types/jsrsasign": "^8.0.13",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"jest": {
"clearMocks": true,
"testMatch": [
"**/test/unit/*.test.ts"
]
},
"engines": {
"node": ">=10"
}
}