forked from marcocesarato/react-native-big-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.65 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-native-big-list",
"version": "1.5.4",
"description": "A big and fast list implementation for react-native with a recycler API focused on performance and ram usage while processing thousand items on the list.",
"keywords": [
"react-native-big-list",
"react",
"react-native",
"javascript",
"ui-lib",
"rn",
"big-list",
"fast-list",
"scroll-list",
"large-list",
"biglist",
"fastlist",
"scrolllist",
"largelist",
"fast",
"scroll",
"large",
"bigdata",
"big",
"massive",
"list",
"performance"
],
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"author": "Marco Cesarato <[email protected]>",
"bugs": {
"url": "https://github.com/marcocesarato/react-native-big-list/issues"
},
"homepage": "https://marcocesarato.github.io/react-native-big-list-docs/",
"license": "GPL-3.0-or-later",
"scripts": {
"prepare": "bob build && node scripts/dist.js",
"lint": "eslint --ignore-path .gitignore \"./lib/*.{js,jsx}\"",
"prettify": "prettier --write \"./**/*.{ts,tsx,js,jsx,json,md}\"",
"format": "yarpm run prettify && yarpm run lint --fix",
"release": "standard-version"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.1",
"eslint": "^8.8.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"glob": "^8.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "^2.4.1",
"react-native-builder-bob": "^0.18.2",
"standard-version": "^9.3.2",
"typescript": "^4.5.2",
"yarpm": "^1.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --ignore-path .gitignore . --fix"
],
"**/*.{ts,tsx,js,jsx,json}": [
"prettier --write ."
]
},
"peerDependencies": {
"@types/react": "*",
"@types/react-native": "*",
"react": "*",
"react-native": "*"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"bit": {
"env": {},
"packageManager": "npm"
},
"react-native-builder-bob": {
"source": "lib",
"output": "dist",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
]
}