-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "react-native-logs",
"version": "5.3.0",
"description": "Performance-aware simple logger for React-Native with namespaces, custom levels and custom transports (colored console, file writing, etc.)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:verbose": "jest --verbose",
"test:cov": "jest --coverage",
"build": "rm -rf dist && tsc",
"precommit": "rm -rf dist && tsc && jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mowispace/react-native-logs.git"
},
"keywords": [
"log",
"logs",
"logger",
"react-native",
"expo",
"error",
"console",
"colors",
"debug",
"file",
"custom",
"levels",
"namespace"
],
"author": "Alessandro Bottamedi - [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/mowispace/react-native-logs/issues"
},
"homepage": "https://github.com/mowispace/react-native-logs#readme",
"devDependencies": {
"jest": "^29.7.0",
"typescript": "^5.6.3"
}
}