forked from BeTomorrow/react-native-file-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.17 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.17 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "react-native-file-logger",
"title": "React Native File Logger",
"version": "0.5.5",
"description": "A simple file-logger for React Native",
"main": "dist/index.js",
"source": "src/index.ts",
"files": [
"README.md",
"android",
"ios",
"dist",
"src",
"RNFileLogger.podspec"
],
"scripts": {
"build": "rimraf dist && tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeTomorrow/react-native-file-logger.git",
"baseUrl": "https://github.com/BeTomorrow/react-native-file-logger"
},
"keywords": [
"react-native"
],
"author": {
"name": "BeTomorrow",
"email": "streny@betomorrow.com"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.60.0"
},
"devDependencies": {
"@babel/preset-env": "^7.19.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-native": "0.71.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.2"
},
"codegenConfig": {
"name": "FileLoggerSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.betomorrow.rnfilelogger"
}
}
}