-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 951 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 951 Bytes
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
{
"name": "@betomorrow/logging-native",
"version": "1.0.6",
"description": "React Native plugin of @betomorrow/logging-core",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"prepare": "bob build"
},
"author": "BeTomorrow",
"license": "MIT",
"peerDependencies": {
"react-native": "*",
"react-native-fs": "*"
},
"dependencies": {
"@betomorrow/logging-core": "1.0.6",
"async-mutex": "^0.1.4"
},
"devDependencies": {
"@betomorrow/logging-core": "./packages/core/lib/typescript/src",
"@react-native-community/bob": "^0.10.0",
"@types/react-native": "^0.62.1",
"prettier": "^2.0.2",
"react-native-fs": "^2.16.6",
"typescript": "^3.8.3"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}