forked from gusgard/react-native-swiper-flatlist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.29 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.29 KB
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
{
"name": "react-native-swiper-flatlist",
"version": "2.0.2",
"main": "index.js",
"license": "Apache-2.0",
"author": "Gustavo Gard <gusgard.it@gmail.com> (https://gusgard.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/gusgard/react-native-swiper-flatlist.git"
},
"description": "React native swiper flatlist component",
"bugs": {
"url": "https://github.com/gusgard/react-native-swiper-flatlist/issues"
},
"homepage": "https://github.com/gusgard/react-native-swiper-flatlist#readme",
"keywords": [
"swiper flatlist",
"swiper",
"swiper hooks",
"swiper component",
"react native",
"react-native",
"react",
"flatlist",
"flatlist swiper"
],
"scripts": {
"lint": "yarn eslint index.js src example/scripts example/src",
"lint:fix": "yarn lint --fix",
"test": "yarn ci",
"test:watch": "jest --watch",
"ci": "yarn lint && yarn jest",
"start": "echo ----- Check example folder ----- 👻",
"publish": "npm publish"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@react-native-community/eslint-config": "^0.0.5",
"@types/jest": "^24.0.16",
"@types/react-native": "^0.60.2",
"babel-eslint": "^10.0.2",
"babel-jest": "24.8.0",
"babel-preset-react-native": "4.0.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-reactnative": "^1.0.2",
"eslint-plugin-flowtype": "^3.12.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"eslint-plugin-react-native": "^3.3.0",
"jest": "24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"pre-commit": "^1.2.2",
"prettier": "^1.14.3",
"prettier-eslint": "^9.0.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-native": "0.60.4",
"react-native-testing-library": "^1.11.1",
"react-test-renderer": "16.8.6"
},
"peerDependencies": {
"react-native": ">=0.59.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/"
]
},
"pre-commit": {
"run": [
"lint",
"test"
]
}
}