This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
68 lines (68 loc) · 1.73 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
{
"name": "react-native-responsive-dimensions",
"version": "3.1.1",
"description": "Resposive fontSize, height and width for your react-native components.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"files": [
"lib/",
"src/"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"prepare": "bob build"
},
"keywords": [
"react-native",
"responsive",
"responsive-height",
"responsive-width",
"responsive-font-size",
"fontSize",
"responsive-dimensions"
],
"author": "DaniAkash <[email protected]> (https://github.com/DaniAkash)",
"repository": "DaniAkash/react-native-responsive-dimensions",
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.44.1"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"copyFlow": true
}
],
"module",
"typescript"
]
},
"devDependencies": {
"@react-native-community/bob": "^0.10.0",
"@react-native-community/eslint-config": "^0.0.7",
"@testing-library/react-native": "^5.0.3",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.23",
"@types/react-native": "^0.61.23",
"@types/react-test-renderer": "^16.9.2",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-tsc": "^1.2.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-native": "^0.61.5",
"react-test-renderer": "^16.13.1",
"typescript": "^3.8.3"
}
}