forked from auth0/react-native-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.86 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
{
"name": "react-native-auth0",
"title": "React Native Auth0",
"version": "2.16.0",
"description": "React Native toolkit for Auth0 API",
"main": "index.js",
"scripts": {
"test": "jest",
"test:ci": "jest --coverage",
"jsdocs": "jsdoc --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/react-native-auth0.git",
"baseUrl": "https://github.com/auth0/react-native-auth0"
},
"keywords": [
"react-native"
],
"author": {
"name": "Auth0",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.11.0 || ^17 || ^18",
"react-native": ">=0.65.0 <1.0.x"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.6",
"babel-jest": "^28.1.3",
"expo-module-scripts": "^2.0.0",
"faker": "^4.1.0",
"fetch-mock": "^7.3.9",
"husky": "^4.2.5",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jsdoc": "^3.6.4",
"jsdoc-to-markdown": "^6.0.1",
"metro-react-native-babel-preset": "^0.58.0",
"minami": "^1.2.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.65.0",
"semver": "^6.3.0"
},
"dependencies": {
"@expo/config-plugins": "^4.1.5",
"base-64": "^0.1.0",
"crypto-js": "^4.0.0",
"jsbn": "^1.1.0",
"jwt-decode": "^2.2.0",
"prop-types": "^15.8.1",
"url": "^0.11.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": false,
"modulePathIgnorePatterns": [
"fixtures"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}