-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "pagescrollview",
"version": "2.2.0",
"description": "React Native ScrollView with common settings and bugs fixes",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "echo \"No test specified.\"",
"lint": "eslint --fix \"src/**\"",
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"watch": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"prepublishOnly": "npm run test",
"prepare": "npm run build",
"start": "npm run watch"
},
"keywords": [
"PageScrollView",
"Page",
"ScrollView",
"React Native",
"Scroll",
"View",
"List",
"Expo",
"FlatList",
"flex-grow",
"flex",
"fix"
],
"author": "Henrique Bruno (aka SrBrahma)",
"license": "MIT",
"files": [
"/lib"
],
"bugs": {
"url": "https://github.com/SrBrahma/pagescrollview/issues"
},
"homepage": "https://github.com/SrBrahma/pagescrollview#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SrBrahma/pagescrollview.git"
},
"devDependencies": {
"@types/react-native": "*",
"eslint-config-gev": "2.33.0",
"react": "*",
"react-native": "*",
"typescript": "4.5.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}