forked from m-ruhl/react-native-keychain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "react-native-keychain",
"version": "8.1.1",
"description": "Keychain Access for React Native",
"main": "index.js",
"files": [
"android",
"!android/src/test",
"RNKeychain.xcodeproj",
"RNKeychainManager",
"typings",
"RNKeychain.podspec"
],
"scripts": {
"format": "prettier '{,typings/,KeychainExample/}*.{md,js,json,ts,tsx}' --write",
"lint": "eslint .",
"flow": "flow",
"test": "./gradlew test"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"android",
"keychain"
],
"author": {
"name": "Joel Arvidsson",
"email": "[email protected]"
},
"homepage": "https://github.com/oblador/react-native-keychain",
"bugs": {
"url": "https://github.com/oblador/react-native-keychain/issues"
},
"typescript": {
"definition": "typings/react-native-keychain.d.ts"
},
"types": "typings/react-native-keychain.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/oblador/react-native-keychain.git"
},
"license": "MIT",
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.1",
"eslint": "^7.2.0",
"flow-bin": "^0.176.3",
"prettier": "^2.2.1",
"react-native": "^0.69.0",
"typescript": "^4.2.2"
},
"volta": {
"node": "16.14.2"
}
}