-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "react-native-fast-crypto",
"version": "2.2.0",
"description": "Native C/C++ implemented crypto libraries for React Native apps",
"keywords": [
"react-native",
"scrypt",
"fast",
"native"
],
"homepage": "https://github.com/EdgeApp/react-native-fast-crypto",
"repository": {
"type": "git",
"url": "[email protected]:EdgeApp/react-native-fast-crypto.git"
},
"license": "MIT",
"author": "Edge",
"contributors": [
"Paul Puey <[email protected]>",
"William Swanson <[email protected]>"
],
"main": "index.js",
"files": [
"/android/build.gradle",
"/android/jni/*",
"/android/src/*",
"/CHANGELOG.md",
"/index.js",
"/ios/*",
"/package.json",
"/react-native-fast-crypto.podspec",
"/README.md"
],
"scripts": {
"build-secp256k1": "./build-secp256k1.sh",
"fix-android": "(cd android; ./format-java.sh)",
"fix": "prettier --write index.js"
},
"dependencies": {
"buffer": "^5.0.8",
"rfc4648": "^1.0.0"
},
"devDependencies": {
"prettier": "^2.5.1"
},
"peerDependencies": {
"react-native": ">=0.47.0 <1.0.0"
}
}