-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
103 lines (103 loc) · 2.74 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-responsive-image-view",
"version": "2.2.0",
"description": "React Native component for scaling an Image within the parent View",
"keywords": [
"react",
"react-native",
"responsive",
"flexible",
"fit",
"aspect-ratio",
"image",
"view",
"hook"
],
"author": {
"name": "Justin Hall",
"email": "[email protected]"
},
"contributors": [],
"license": "MIT",
"homepage": "https://npm.im/react-native-responsive-image-view",
"repository": {
"type": "git",
"url": "https://github.com/wKovacs64/react-native-responsive-image-view.git"
},
"bugs": {
"url": "https://github.com/wKovacs64/react-native-responsive-image-view/issues"
},
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"types": "dist/typescript/src/index.d.ts",
"react-native": "src/index.tsx",
"source": "src/index.tsx",
"files": [
"src",
"dist/commonjs",
"dist/module",
"dist/typescript/src",
"!**/__fixtures__",
"!**/__tests__"
],
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"scripts": {
"clean": "rimraf coverage dist",
"changeset": "changeset",
"changeset:version": "changeset version && npm install --package-lock-only",
"changeset:publish": "changeset publish",
"format": "prettier --cache --write .",
"lint": "eslint .",
"prepack": "bob build",
"prepublishOnly": "run-p --silent lint test",
"test": "jest",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"private": false,
"publishConfig": {
"access": "public"
},
"prettier": "@wkovacs64/prettier-config",
"devDependencies": {
"@babel/core": "7.26.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.12",
"@testing-library/react-native": "13.0.1",
"@types/jest": "29.5.14",
"@types/react": "18.3.18",
"@types/react-test-renderer": "18.3.1",
"@wkovacs64/prettier-config": "4.1.1",
"babel-jest": "29.7.0",
"babel-plugin-syntax-hermes-parser": "0.26.0",
"doctoc": "2.2.1",
"eslint": "8.57.1",
"eslint-plugin-wkovacs64": "16.2.0",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"metro-react-native-babel-preset": "0.77.0",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.77.0",
"react-native-builder-bob": "0.35.2",
"react-test-renderer": "18.3.1",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": ">=16.8.3",
"react-native": ">=0.59.0"
}
}