forked from react-native-oh-library/react-native-fast-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.18 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
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@react-native-oh-tpl/react-native-fast-image",
"version": "8.6.3-0.4.16",
"description": "🚩 FastImage, performant React Native image component.",
"keywords": [
"cache",
"cached",
"fastimage",
"harmony",
"image",
"priority"
],
"homepage": "https://github.com/DylanVann/react-native-fast-image#readme",
"bugs": {
"url": "https://github.com/DylanVann/react-native-fast-image/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-oh-library/react-native-fast-image.git"
},
"license": "(MIT AND Apache-2.0)",
"author": "Dylan Vann <[email protected]> (https://dylanvann.com)",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"source": "src/index",
"typings": "lib/typescript/index.d.ts",
"files": [
"src",
"lib",
"harmony",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"bob": "bob build",
"prepack": "bob build",
"prepare": "npm run bob && husky install",
"lint": "dv-scripts lint",
"release": "dv-scripts release",
"test": "dv-scripts test"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
},
"eslintConfig": {
"extends": "dv-scripts"
},
"jest": {
"coveragePathIgnorePatterns": [
"ReactNativeFastImageExample*",
"ReactNativeFastImageExampleServer*"
],
"modulePathIgnorePatterns": [
"ReactNativeFastImageExample*",
"ReactNativeFastImageExampleServer*"
],
"preset": "react-native"
},
"resolutions": {
"@jest/create-cache-key-function": "^27",
"@types/react": "17.0.43"
},
"dependencies": {
"react-native-fast-image": "8.6.3"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/runtime": "^7.14.6",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.14",
"@types/react-native": "^0.69.5",
"@types/react-test-renderer": "^17.0.1",
"dv-scripts": "^1.6.0",
"eslint-config-dv-scripts": "^1.1.1",
"husky": "^8.0.1",
"metro-react-native-babel-preset": "^0.66.1",
"prettier": "^2.3.2",
"react": "18.2.0",
"react-native": "0.71.3",
"react-native-builder-bob": "^0.20.4",
"react-test-renderer": "18.2.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^17 || ^18",
"react-native": ">=0.60.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"harmony": {
"alias": "react-native-fast-image"
},
"react-native": "src/index",
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}