-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
131 lines (131 loc) · 4.45 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
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@kinde-oss/react-native-sdk-0-7x",
"version": "2.0.1",
"description": "Kinde React Native SDK for authentication",
"license": "MIT",
"homepage": "https://kinde.com",
"repository": {
"type": "git",
"url": "https://github.com/kinde-oss/kinde-react-native-sdk-0-7x"
},
"bugs": "https://github.com/kinde-oss/kinde-react-native-sdk-0-7x",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rimraf dist && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".js,.ts\"",
"prepare": "npm run build && husky install",
"test": "jest",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"release": "release-it"
},
"author": {
"name": "Kinde",
"email": "[email protected]",
"url": "https://kinde.com"
},
"browser": {
"fs": false
},
"keywords": [
"Kinde",
"login",
"Authorization Code Grant Flow",
"PKCE",
"Single Page Application authentication",
"React Native authentication"
],
"dependencies": {
"@babel/runtime": "^7.19.4",
"@kinde/js-utils": "^0.6.0",
"crypto-js": "3.3.0",
"jwt-decode": "^3.1.2",
"react-native-inappbrowser-reborn": ">= 3.7",
"react-native-keychain": ">= 8.0",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.0.0",
"@types/crypto-js": "^3.1.47",
"@types/node": "^18.11.7",
"@types/react-native": "^0.70.6",
"@types/url-parse": "^1.4.8",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "29.5.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "29.5.0",
"lint-staged": "^13.0.3",
"metro-react-native-babel-preset": "^0.73.3",
"prettier": "^2.7.1",
"react": "18.1.0",
"react-native": "0.70.8",
"react-test-renderer": "18.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react-native": ">= 0.70",
"react-native-inappbrowser-reborn": ">= 3.7",
"react-native-keychain": ">= 8.0"
},
"files": [
"dist"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write .",
"npx eslint --fix"
]
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"modulePaths": [
"<rootDir>"
],
"cacheDirectory": ".jest/cache",
"transformIgnorePatterns": [
"/node_modules/(?!(@react-native|react-native)/).*/"
]
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}