-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "react-native-virgil-crypto",
"version": "0.6.4",
"description": "React Native Bridge for Virgil Crypto Library",
"main": "index.js",
"typings": "index.d.ts",
"files": [
"android",
"ios",
"src",
"index.js",
"index.d.ts",
"RNVirgilCrypto.podspec"
],
"repository": "https://github.com/VirgilSecurity/react-native-virgil-crypto",
"author": "Virgil Security Inc. <[email protected]>",
"license": "BSD-3-Clause",
"keywords": [
"react-native",
"security",
"virgil",
"virgilsecurity",
"encryption",
"crypto"
],
"scripts": {
"test": "jest index.spec.js src"
},
"dependencies": {
"@types/react": "^18.2.6",
"@virgilsecurity/crypto-types": "2.0.0",
"buffer": "^6.0.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-native": "^0.74.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native/metro-config": "0.74.83",
"@react-native/typescript-config": "0.74.83",
"babel-jest": "^29.4.2",
"jest": "^29.6.3",
"metro-react-native-babel-preset": "^0.75.0",
"react": "18.2.0",
"react-native": "0.74.1"
},
"jest": {
"preset": "react-native"
}
}