-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
103 lines (103 loc) · 2.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-native-file-logger",
"title": "React Native File Logger",
"version": "0.5.6",
"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",
"@release-it/conventional-changelog": "^8.0.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-native": "0.71.1",
"release-it": "^17.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.2"
},
"codegenConfig": {
"name": "FileLoggerSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.betomorrow.rnfilelogger"
}
},
"release-it": {
"hooks": {
"before:init": [
"npm run build"
]
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "✨ Features"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "chore(deps)",
"section": "🛠️ Dependency Upgrades"
},
{
"type": "chore",
"section": "🧹 Chore"
},
{
"type": "docs",
"section": "📚 Documentation"
}
]
}
}
}
}
}