-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 956 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 956 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
44
45
46
47
48
{
"name": "@betomorrow/logging-core",
"version": "1.0.6",
"description": "Logging tools",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeTomorrow/react-logging.git"
},
"keywords": [
"react",
"log",
"logging"
],
"author": "BeTomorrow",
"license": "MIT",
"bugs": {
"url": "https://github.com/BeTomorrow/react-logging/issues"
},
"homepage": "https://github.com/BeTomorrow/react-logging#readme",
"devDependencies": {
"@react-native-community/bob": "^0.10.0",
"prettier": "^2.0.2",
"typescript": "^3.8.3"
},
"dependencies": {
"dayjs": "^1.11.3"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}