-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "react-native-superb-grid",
"version": "0.0.2",
"description": "Responsive Grid View for React Native in TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"lint": "eslint .",
"test": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-native": ">=0.59.0"
},
"files": [
"*.ts",
"*.md",
"lib",
"src",
"tsconfig.json",
"!**/*.tsbuildinfo"
],
"keywords": [
"react",
"react-native",
"responsive",
"super",
"grid",
"view",
"flat-list",
"list-view",
"section-list",
"grid-view"
],
"repository": "ratson/react-native-superb-grid",
"license": "MIT",
"devDependencies": {
"@tsconfig/react-native": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"typescript": "5.4.5"
}
}