-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.11 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "appdimens-react-native",
"version": "2.0.0",
"description": "AppDimens 2.0 - Smart and Responsive Dimensioning for React Native with 13 Scaling Strategies - Mathematically responsive scaling with intelligent auto-inference for any screen size or aspect ratio",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"files": [
"src",
"lib",
"android",
"ios",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"build": "bob build",
"dev": "bob build --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "bob build",
"release": "release-it",
"pod-install": "cd ios && pod install"
},
"keywords": [
"react-native",
"responsive",
"dimensions",
"scaling",
"ui",
"design",
"mobile",
"cross-platform",
"appdimens"
],
"repository": {
"type": "git",
"url": "https://github.com/bodenberg/appdimens.git",
"directory": "ReactNative"
},
"bugs": {
"url": "https://github.com/bodenberg/appdimens/issues"
},
"homepage": "https://github.com/bodenberg/appdimens#readme",
"author": {
"name": "Jean Bodenberg",
"email": "jc8752719@gmail.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.73.0",
"@react-native/eslint-config": "^0.73.0",
"@react-native/metro-config": "^0.73.0",
"@react-native/typescript-config": "^0.73.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.2.1",
"@types/react": "~18.0.24",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^19.1.0",
"babel-jest": "^30.2.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.1",
"metro-react-native-babel-preset": "0.76.8",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-native": "^0.73.0",
"react-native-builder-bob": "^0.20.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5",
"typescript": "4.8.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native",
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
},
"prettier": {
"arrowParens": "avoid",
"bracketSameLine": true,
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}