-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 929 Bytes
/
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
{
"name": "react-oidc",
"version": "1.0.3",
"description": "Wrapper for the OIDC JavaScript client, to be used in React projects.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc",
"prepare": "yarn build",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"oidc",
"react",
"auth",
"oauth",
"openid"
],
"author": "Thomas Chia",
"repository": "github:thchia/react-oidc",
"license": "MIT",
"peerDependencies": {
"@types/react": "^16.4.7",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"@types/jest": "^23.3.0",
"@types/react": "^16.4.7",
"jest": "^23.6",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-testing-library": "^4.1.3",
"ts-jest": "^23.0.1",
"typescript": "^2.9.2"
},
"dependencies": {
"oidc-client": "^1.5.2"
}
}