-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "@bam.tech/react-native-app-security",
"version": "0.5.0",
"description": "Easily implement usual security measures in React Native Expo apps",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "open -a \"Xcode\" example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"release": "np --no-tests"
},
"keywords": [
"react-native",
"expo",
"@bam.tech/react-native-app-security",
"RNAS"
],
"repository": "https://github.com/bamlab/react-native-app-security",
"bugs": {
"url": "https://github.com/bamlab/react-native-app-security/issues"
},
"author": "Matthieu Gicquel <matthieug@bam.tech> (https://github.com/bamlab)",
"license": "MIT",
"homepage": "https://github.com/bamlab/react-native-app-security#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {},
"devDependencies": {
"@types/react": "^18.0.25",
"expo-module-scripts": "^3.0.11",
"expo-modules-core": "^1.5.11",
"np": "^10.0.5"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}