-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "react-native-customizable-refresh-control-view",
"version": "0.0.2",
"description": "a customizable react native refresh control component",
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": "git@github.com:Darmody/react-native-refresh-control-view.git",
"author": "Darmody <eterlf41@gmail.com>",
"license": "MIT",
"private": false,
"files": [
"build",
"src",
"package.json"
],
"scripts": {
"build": "rm -rf ./build && ./node_modules/.bin/tsc"
},
"types": "./build/index.d.s",
"devDependencies": {
"@types/react": "^16.8.8",
"@types/react-native": "^0.57.41",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-native": "^0.59.1",
"react-native-gesture-handler": "^1.1.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.4000"
},
"peerDependencies": {
"react": ">= 16.3.2",
"react-native": ">= 0.54.0",
"react-native-gesture-handler": ">= 1.0.16"
}
}