-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
51 lines (51 loc) · 1.16 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
{
"name": "react-native-securerandom",
"version": "1.0.1",
"description": "Generate cryptographically-secure random bytes in react native",
"main": "index.js",
"scripts": {
"test": "flow && jest"
},
"types": "index.d.ts",
"author": {
"name": "Rob Hogan",
"email": "[email protected]",
"url": "https://github.com/robhogan"
},
"license": "MIT",
"peerDependencies": {
"react-native": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robhogan/react-native-securerandom.git"
},
"keywords": [
"react-native",
"SecRandomCopyBytes",
"PRNG",
"CSPRNG",
"SecureRandom",
"crypto",
"RandomNumberGenerator",
"Cryptography"
],
"homepage": "https://github.com/robhogan/react-native-securerandom#readme",
"dependencies": {
"base64-js": "*"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.1.0",
"babel-jest": "^29.0.3",
"flow-bin": "^0.187.1",
"jest": "^29.0.3",
"react-native": "^0.69.0"
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/jest.babel.js"
}
}
}