forked from DylanVann/react-native-fast-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "react-native-fast-image",
"version": "5.0.11",
"description": "🚩 FastImage, performant React Native image component.",
"keywords": [
"cache",
"cached",
"fastimage",
"image",
"priority"
],
"homepage": "https://github.com/DylanVann/react-native-fast-image#readme",
"bugs": {
"url": "https://github.com/DylanVann/react-native-fast-image/issues"
},
"license": "(MIT AND Apache-2.0)",
"author": "Dylan Vann <dylan@dylanvann.com> (https://dylanvann.com)",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/DylanVann/react-native-fast-image.git"
},
"scripts": {
"format": "prettier --write --list-different ./src/*.js",
"prepare": "git submodule update --init --recursive",
"test": "yarn run format && yarn run test:jest",
"test:jest": "jest ./src/*.js"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"babel-jest": "^23.6.0",
"jest": "^23.6.0",
"metro-react-native-babel-preset": "^0.48.1",
"prettier": "^1.14.3",
"prettier-check": "^2.0.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-native": "^0.57.3",
"react-test-renderer": "16.5.2"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-native": "*"
}
}