forked from novalabio/react-native-bip39
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.26 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
53
54
55
56
57
58
59
{
"name": "react-native-bip39",
"version": "2.2.0",
"description": "ReactNative-ready Bitcoin BIP39: Mnemonic code for generating deterministic keys",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"scripts": {
"standard": "standard"
},
"author": "Alberto Dallaporta",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/39otrebla/react-native-bip39"
},
"license": "MIT",
"dependencies": {
"create-hash": "^1.1.0",
"react-native-fast-crypto": "^2.0.0",
"react-native-securerandom": "1.0.0",
"unorm": "^1.3.3"
},
"devDependencies": {
"@react-native-community/bob": "^0.16.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"standard": "16.0.1",
"tape": "^5.0.1",
"typescript": "^4.0.5"
},
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"files": [
".",
"index.ts",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"copyFlow": true
}
],
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}