forked from authts/oidc-client-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.93 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "oidc-client-ts",
"version": "2.2.1",
"description": "OpenID Connect (OIDC) & OAuth2 client library",
"repository": {
"type": "git",
"url": "git+https://github.com:authts/oidc-client-ts.git"
},
"homepage": "https://github.com/authts/oidc-client-ts#readme",
"license": "Apache-2.0",
"main": "dist/umd/oidc-client-ts.js",
"types": "dist/types/oidc-client-ts.d.ts",
"exports": {
".": {
"types": "./dist/types/oidc-client-ts.d.ts",
"import": "./dist/esm/oidc-client-ts.js",
"require": "./dist/umd/oidc-client-ts.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"keywords": [
"authentication",
"oauth2",
"oidc",
"openid",
"OpenID Connect"
],
"scripts": {
"build": "node scripts/build.js && npm run build-types",
"build-types": "tsc -p tsconfig.build.json && api-extractor run",
"clean": "git clean -fdX dist lib *.tsbuildinfo",
"prepack": "npm run build",
"test": "tsc && jest",
"typedoc": "typedoc",
"lint": "eslint --max-warnings=0 --cache .",
"prepare": "husky install"
},
"dependencies": {
"crypto-js": "^4.1.1",
"jwt-decode": "^3.1.2"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.18.10",
"@testing-library/jest-dom": "^5.16.5",
"@types/crypto-js": "^4.0.2",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"esbuild": "^0.17.0",
"eslint": "^8.5.0",
"eslint-plugin-testing-library": "^5.0.1",
"http-proxy-middleware": "^2.0.1",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-mock": "^29.3.1",
"lint-staged": "^13.0.0",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.2",
"typescript": "~4.8.4",
"yn": "^5.0.0"
},
"engines": {
"node": ">=12.13.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}