Skip to content

Commit 137e615

Browse files
author
Matthieu Gicquel
committed
prepare for publication
1 parent d181974 commit 137e615

3 files changed

Lines changed: 1979 additions & 25 deletions

File tree

.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ __tests__
99
/android/src/test/
1010
/android/build/
1111
/example/
12+
13+
.eslintrc.js
14+
tsconfig.json

package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@bam.tech/react-native-app-security",
3-
"version": "0.1.0",
4-
"description": "Helpers to easily secure a React Native app",
3+
"version": "0.0.1",
4+
"description": "Easily implement usual security measures in React Native Expo apps",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",
77
"scripts": {
@@ -13,7 +13,8 @@
1313
"prepublishOnly": "expo-module prepublishOnly",
1414
"expo-module": "expo-module",
1515
"open:ios": "open -a \"Xcode\" example/ios",
16-
"open:android": "open -a \"Android Studio\" example/android"
16+
"open:android": "open -a \"Android Studio\" example/android",
17+
"release": "np --no-tests"
1718
},
1819
"keywords": [
1920
"react-native",
@@ -28,11 +29,16 @@
2829
"author": "Matthieu Gicquel <matthieug@bam.tech> (https://github.com/bamlab)",
2930
"license": "MIT",
3031
"homepage": "https://github.com/bamlab/react-native-app-security#readme",
32+
"publishConfig": {
33+
"access": "public",
34+
"registry": "https://registry.npmjs.org/"
35+
},
3136
"dependencies": {},
3237
"devDependencies": {
3338
"@types/react": "^18.0.25",
3439
"expo-module-scripts": "^3.0.11",
35-
"expo-modules-core": "^1.5.11"
40+
"expo-modules-core": "^1.5.11",
41+
"np": "^9.0.0"
3642
},
3743
"peerDependencies": {
3844
"expo": "*",

0 commit comments

Comments
 (0)