forked from jsoendermann/rn-section-list-get-item-layout
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "react-native-section-list-get-item-layout",
"version": "3.0.0",
"description": "This package simplifies constructing the getItemLayout prop for react native SectionLists.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"license": "Apache-2.0",
"author": {
"name": "Jan Soendermann",
"email": "[email protected]"
},
"contributors": [
{"name": "Antoine Rousseau", "email": "[email protected]", "url": "https://antoine.rousseau.im/"}
],
"keywords": [
"react-native",
"SectionList",
"getItemLayout"
],
"repository": "https://github.com/jsoendermann/rn-section-list-get-item-layout",
"scripts": {
"ts:build": "tsc --skipLibCheck",
"ts:watch": "tsc --watch --skipLibCheck",
"test": "jest",
"prepublish": "npm run ts:build"
},
"devDependencies": {
"@types/react-native": "^0.62.7",
"jest": "^26.0.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": ">=16.8.3",
"react-native": ">=0.59.0"
}
}