forked from auth0/react-native-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.53 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.53 KB
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
{
"name": "react-native-auth0",
"title": "React Native Auth0",
"version": "2.9.0",
"description": "React Native toolkit for Auth0 API",
"main": "index.js",
"scripts": {
"test": "jest",
"test:ci": "jest --coverage",
"jsdocs": "jsdoc --configure .jsdoc.json --verbose",
"release": "scripts/release.sh"
},
"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": "support@auth0.com"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.11.0 || ^17",
"react-native": ">=0.62.2 <1.0.x"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"babel-jest": "^24.9.0",
"faker": "^4.1.0",
"fetch-mock": "^7.3.9",
"husky": "^4.2.5",
"jest": "^24.9.0",
"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": "^16.8.6",
"react-native": "^0.62.2",
"semver": "^6.3.0"
},
"dependencies": {
"base-64": "^0.1.0",
"crypto-js": "^3.3.0",
"jsbn": "^1.1.0",
"jwt-decode": "^2.2.0",
"url": "^0.11.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": false
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}