forked from okta/okta-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.25 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
{
"private": true,
"name": "@okta/okta-react-native",
"title": "React Native Okta Sdk Bridge",
"version": "1.8.0",
"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",
"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",
"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.5.0",
"react-native": "^0.60.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/eslint-parser": "^7.11.5",
"@babel/preset-env": "^7.5.4",
"babel-jest": "^24.8.0",
"chalk": "^4.1.0",
"eslint": "^7.10.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^24.8.0",
"jest-junit": "^12.0.0",
"metro-react-native-babel-preset": "^0.55.0",
"react": "^16.5.0",
"react-native": "^0.60.0",
"shelljs": "^0.8.4"
},
"dependencies": {
"@okta/configuration-validation": "^0.3.0",
"@okta/okta-auth-js": "3.1.0",
"jwt-lite": "^1.1.2",
"url-parse": "^1.4.7"
},
"jest": {
"coverageDirectory": "<rootDir>/test-reports/coverage",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!**/*.test.js"
],
"reporters": [
"default",
"jest-junit"
],
"roots": [
"./"
],
"restoreMocks": true,
"automock": false,
"preset": "react-native",
"setupFiles": [
"./setupJest.js"
]
},
"jest-junit": {
"outputDirectory": "./test-reports/unit/",
"outputName": "junit-result.xml"
}
}