@react-native-module/crypto 4.0.0-0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,16 +13,16 @@ Use this module if you are considering other platforms
|
|
|
13
13
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
16
|
-
This module has peerDependency "react", "react-native"
|
|
16
|
+
This module has peerDependency "react", "react-native", "@react-native-module/pbkdf2"
|
|
17
17
|
|
|
18
18
|
A typical workflow:
|
|
19
19
|
|
|
20
20
|
```
|
|
21
|
-
npm i --save @react-native-module/crypto
|
|
21
|
+
npm i --save @react-native-module/crypto @react-native-module/pbkdf2
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
```
|
|
25
|
-
yarn add @react-native-module/crypto
|
|
25
|
+
yarn add @react-native-module/crypto @react-native-module/pbkdf2
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
## List of Support node's features
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"author": "sacru2red <sacru2red@gmail.com>",
|
|
3
3
|
"name": "@react-native-module/crypto",
|
|
4
4
|
"description": "implementation of crypto for React Native",
|
|
5
|
-
"version": "4.0.
|
|
5
|
+
"version": "4.0.1",
|
|
6
6
|
"main": "lib/cjs/index.js",
|
|
7
7
|
"module": "lib/es/index.js",
|
|
8
8
|
"types": "lib/types/index.d.ts",
|
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
"unit": "echo 'tests not set up for React Native yet'"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@react-native-module/pbkdf2": "^0.4.1",
|
|
26
25
|
"@react-native-module/randombytes": "^4.0.0",
|
|
27
26
|
"browserify-cipher": "^1.0.0",
|
|
28
27
|
"browserify-sign": "^4.0.4",
|
|
@@ -56,6 +55,7 @@
|
|
|
56
55
|
"zuul": "^3.12.0"
|
|
57
56
|
},
|
|
58
57
|
"peerDependencies": {
|
|
58
|
+
"@react-native-module/pbkdf2": "*",
|
|
59
59
|
"react": "*",
|
|
60
60
|
"react-native": "*"
|
|
61
61
|
},
|