-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 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
{
"name": "react-native-web-image",
"version": "0.0.6",
"description": "An image component for react-native with persistent disk and memory caching",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.dist.json",
"prestart": "npm run build",
"start": "react-native start --projectRoot samples/SampleApp",
"run-sample-android": "react-native run-android --root samples/SampleApp",
"run-sample-ios": "react-native run-ios --project-path samples/SampleApp/ios",
"lint:js": "tslint -p tsconfig.json",
"test:android": "./gradlew check",
"test:ios": "xcodebuild test -workspace tests/TestApp/TestApp.xcworkspace -scheme TestApp -destination 'platform=iOS Simulator,name=iPhone 8'"
},
"keywords": [
"react-native",
"react-component",
"ios",
"android",
"cache-image",
"cache",
"mobile"
],
"author": "Vladimir Timofeev <[email protected]>",
"homepage": "https://github.com/vovkasm/react-native-web-image",
"bugs": {
"url": "https://github.com/vovkasm/react-native-web-image/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/vovkasm/react-native-web-image.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@types/react": "^16.8.12",
"@types/react-native": "^0.60.0",
"@vovkasm/tslint-config": "^2.0.1",
"metro-react-native-babel-preset": "^0.55.0",
"prettier": "1.18.2",
"react": "16.8.6",
"react-native": "0.60.4",
"tslint": "^5.15.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.3"
},
"peerDependencies": {
"react-native": ">=0.55.0"
},
"dependencies": {
"tslib": "^1.9.0"
}
}