-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.54 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@nevzatcirak/react-oidc-client",
"version": "2.2.5",
"description": "React components and service for oidc authentication",
"homepage": "https://github.com/nevzatcirak/react-oidc-client#readme",
"main": "dist/umd/react-oidc-client.js",
"types": "dist/types/react-oidc-client.d.ts",
"keywords": [
"react",
"react-component",
"oidc",
"oauth2",
"openid",
"OpenID Connect",
"browser",
"typescript",
"oidc-client",
"nevzatcirak",
"infra",
"authentication",
"context-api"
],
"exports": {
".": {
"import": "./dist/esm/react-oidc-client.js",
"require": "./dist/umd/react-oidc-client.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"fix:prettier": "prettier \"{,!(dist|temp)/**/}*.{ts,tsx}\" --write",
"build": "node scripts/build.js && npm run build-types",
"build-types": "tsc --emitDeclarationOnly",
"clean": "git clean -fdX dist",
"prepack": "npm run build",
"lint": "eslint --max-warnings=0 --cache .",
"prepare": "husky install",
"p": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nevzatcirak/react-oidc-client.git"
},
"author": "Nevzat ÇIRAK <nevzatcirak17@gmail.com>",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/nevzatcirak/react-oidc-client/issues"
},
"dependencies": {
"oidc-client-ts": "^2.2.5",
"react-router-dom": "^5.3.4"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.4",
"oidc-client-ts": "^2.2.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@types/react-router": "^5.1.12",
"@types/react-router-dom": "^5.1.7",
"@types/history": "^4.7.7",
"@types/react": "^17.0.65",
"@types/react-dom": "^17.0.20",
"@types/react-test-renderer": "^17.0.3",
"@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": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.5",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"yn": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.13.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}