forked from authts/react-oidc-context
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.05 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
73
74
75
{
"name": "react-oidc-context",
"version": "2.2.0",
"description": "OpenID Connect & OAuth2 authentication using react context api as state management",
"repository": {
"type": "git",
"url": "git+https://github.com:authts/react-oidc-context.git"
},
"homepage": "https://github.com/authts/react-oidc-context#readme",
"license": "MIT",
"main": "dist/umd/react-oidc-context.js",
"types": "dist/types/react-oidc-context.d.ts",
"exports": {
".": {
"import": "./dist/esm/react-oidc-context.js",
"require": "./dist/umd/react-oidc-context.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"keywords": [
"authentication",
"context-api",
"oauth2",
"oidc",
"openid",
"OpenID Connect",
"react-component"
],
"scripts": {
"build": "node scripts/build.js && npm run build-types",
"build-types": "tsc --emitDeclarationOnly && api-extractor run",
"clean": "git clean -fdX dist",
"prepack": "npm run build",
"test": "tsc -p test/tsconfig.json && jest",
"lint": "eslint --max-warnings=0 --cache .",
"prepare": "husky install"
},
"peerDependencies": {
"oidc-client-ts": "^2.0.0",
"react": ">=16.8.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.18.10",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^13.1.1",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"esbuild": "^0.15.6",
"eslint": "^8.4.1",
"eslint-plugin-testing-library": "^5.0.0",
"husky": "^8.0.1",
"jest": "^27.2.0",
"jest-mock": "^29.0.1",
"lint-staged": "^13.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"ts-jest": "^27.0.5",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"yn": "^5.0.0"
},
"engines": {
"node": ">=12.13.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}