-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "react-native-image-header-scroll-view",
"version": "1.0.0",
"description": "ScrollView with an image in header which become a navbar",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run tsc --noEmit",
"prettify": "prettier --write src/**.js",
"build": "tsc",
"prepare": "npm run build",
"preversion": "npm run lint"
},
"files": [
"README.md",
"LICENCE",
"lib",
"readmeAssets"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bamlab/react-native-image-header-scroll-view.git"
},
"keywords": [
"React-native",
"ScrollView",
"animation",
"navbar",
"react-component",
"ios",
"android"
],
"author": "Spoutnik97 <guillaume.piedigrossi@gadz.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bamlab/react-native-image-header-scroll-view/issues"
},
"homepage": "https://github.com/bamlab/react-native-image-header-scroll-view#readme",
"devDependencies": {
"@types/react": "^16.9.56",
"@types/react-native": "^0.63.35",
"babel-eslint": "^10.1.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^7.13.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-native": "^3.10.0",
"prettier": "^1.10.2",
"react": "16.2.0",
"react-native": "0.52.2",
"typescript": "^4.0.5"
},
"peerDependencies": {
"react": ">=16.8.1",
"react-native": ">=0.59.0"
},
"dependencies": {},
"types": "./lib/index.d.ts"
}