-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
{
"name": "@crypho/react-native-secure-random",
"title": "Secure random for react native",
"version": "1.1.0",
"description": "Secure random byte generation for react native",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "tsc --lib esnext -d --allowJs --outDir build index.js && mv build/index.d.ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Crypho/react-native-secure-random.git",
"baseUrl": "https://github.com/Crypho/react-native-secure-random"
},
"keywords": [
"react-native"
],
"author": {
"name": "Yiorgis Gozadinos",
"email": "ggozad@crypho.com"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.59.0-rc.0 <1.0.x"
},
"devDependencies": {
"react": "^16.13.1",
"react-native": "^0.62.0",
"typescript": "^3.8.3"
},
"dependencies": {
"buffer": "^5.5.0"
}
}