-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
118 lines (118 loc) · 2.99 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"private": true,
"name": "@okta/okta-react-native",
"title": "React Native Okta Sdk Bridge",
"version": "2.16.0",
"types": "types/index.d.ts",
"description": "Okta OIDC for React Native",
"main": "dist/index.js",
"podname": "OktaSdkBridgeReactNative",
"homepage": "https://github.com/okta/okta-react-native",
"scripts": {
"build": "node ./scripts/build.js",
"lint": "eslint .",
"lint:report": "eslint -f checkstyle -o ./test-reports/lint/eslint-checkstyle-result.xml .",
"prepare": "yarn build",
"test": "jest && tsd",
"tsd": "tsd",
"test:debug": "node --inspect-brk node_modules/jest/bin/jest.js --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okta/okta-react-native.git"
},
"files": [
"index.js",
"types/index.d.ts",
"android",
"ios",
"LICENSE",
"CHANGELOG.md",
"package.json",
"OktaSdkBridgeReactNative.podspec"
],
"keywords": [
"react",
"react-native",
"authentication",
"okta",
"oidc"
],
"author": "[email protected]",
"license": "Apache-2.0",
"readmeFilename": "README.md",
"peerDependencies": {
"events": "^3.1.0",
"react": "^16.13.0 || ^17.0.0 || ^18.0.0",
"react-native": ">=0.70.1"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.17.10",
"@babel/runtime": "^7.17.9",
"@react-native-community/eslint-config": "^3.2.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.0.9",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"babel-jest": "^29.7.0",
"chalk": "^4.1.2",
"eslint": "^8.5.6",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"metro-react-native-babel-preset": "^0.76.3",
"react": "18.2.0",
"react-native": "~0.73.0",
"shelljs": "^0.8.5",
"tsd": "^0.31.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@babel/plugin-transform-async-to-generator": "^7.24.7",
"@okta/configuration-validation": "^1.1.0",
"@okta/okta-auth-js": "7.7.0",
"jscodeshift": "^0.15.2",
"jwt-decode": "^4.0.0",
"url-parse": "^1.5.10"
},
"resolutions": {
"jscodeshift": "^0.15.2",
"glob": "^9.3.5",
"tar": "^6.2.1",
"micromatch": "^4.0.7",
"braces": "^3.0.3",
"ws": "^8.18.0"
},
"jest": {
"coverageDirectory": "<rootDir>/test-reports/coverage",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!**/*.test.js"
],
"reporters": [
"default",
"jest-junit"
],
"roots": [
"./"
],
"restoreMocks": true,
"automock": false,
"preset": "./scripts/build.js",
"setupFiles": [
"./setupJest.js"
]
},
"jest-junit": {
"outputDirectory": "./test-reports/unit/",
"outputName": "junit-result.xml"
},
"tsd": {
"directory": "./dist/types"
}
}