-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "@busfor/react-native-collapsible-navbar-scrollview",
"title": "React Native Collapsible NavBar ScrollView",
"version": "1.1.1",
"description": "React Native collapsible navBar implementation",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"version": "auto-changelog -p && git add CHANGELOG.md",
"lint": "eslint --ext .tsx,.ts ./src",
"example:install": "cd ./example && yarn",
"example:test": "cd ./example && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/busfor/react-native-collapsible-navbar-scrollview.git",
"baseUrl": "https://github.com/busfor/react-native-collapsible-navbar-scrollview"
},
"keywords": [
"react-native",
"navbar",
"header",
"collapsible",
"scrollview"
],
"author": {
"name": "Andrey Sorokin",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.59.0-rc.0 <1.0.x"
},
"devDependencies": {
"@react-native-community/eslint-config": "^0.0.7",
"@types/react": "^16.9.19",
"@types/react-native": "^0.61.12",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"auto-changelog": "^1.16.2",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-native": "^0.59.10",
"typescript": "^3.8.2"
}
}