forked from vmurin/react-native-azure-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "react-native-azure-auth",
"version": "1.1.3",
"description": "An React Native module implements Azure AD V2.0 authentication flow",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:ci": "jest --coverage && codecov -t ${CODECOV_TOKEN}",
"jsdoc:generate": "jsdoc --configure .jsdoc.json --verbose",
"release:clean": "node scripts/cleanup.js",
"preversion": "node scripts/prepare.js",
"version": "node scripts/jsdocs.js",
"postversion": "npm run release:clean"
},
"keywords": [
"azure",
"azureAD",
"authentication",
"active directory",
"react-native",
"oauth",
"oauth2"
],
"repository": {
"url": "https://github.com/vmurin/react-native-azure-auth.git"
},
"author": "vmurin",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@types/jest": "^24.0.15",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"codecov": "^3.5.0",
"eslint": "^6.0.1",
"eslint-plugin-jest": "^22.7.1",
"eslint-plugin-react": "^7.14.2",
"faker": "^4.1.0",
"fetch-mock": "^7.3.3",
"jest": "^24.8.0",
"jsdoc": "^3.6.2",
"jsdoc-to-markdown": "^5.0.0",
"metro-react-native-babel-preset": "^0.54.1",
"minami": "^1.2.3",
"prop-types": "^15.7.2"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"@react-native-community/async-storage": "^1.5.0",
"js-base64": "github:vmurin/js-base64",
"url": "^0.11.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-native": ">=0.57.0"
}
}