-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.67 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.67 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
{
"name": "@twotalltotems/paginatable-list",
"version": "0.3.0",
"description": "A self-managed list with pagination.",
"main": "index.js",
"scripts": {
"format": "prettier --write \"**/*.js\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Twotalltotems/react-native-paginatable.git"
},
"keywords": [
"pagination",
"pull-to-refresh",
"load-more",
"auto",
"list",
"infinite-scrolling",
"endless-scrolling"
],
"author": "TTT Studio (https://ttt.studio)",
"contributors": [
"Becky Wu <wwq220@gmail.com> (http://www.beckywu.me)",
"Felipe Peña <felipe@penya.cl> (http://felipe.penya.cl)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Twotalltotems/react-native-paginatable/issues"
},
"homepage": "https://github.com/Twotalltotems/react-native-paginatable#readme",
"peerDependencies": {
"axios": ">0.17.1",
"prop-types": ">15.6.0",
"react-redux": ">5.0.6",
"redux-thunk": ">2.2.0",
"reduxsauce": ">0.7.0"
},
"dependencies": {
"@twotalltotems/paginatable-list": "0.2.5",
"enzyme-adapter-react-16": "^1.14.0",
"react-dom": "^16.8.6"
},
"devDependencies": {
"axios": "^0.18.0",
"babel-jest": "^24.8.0",
"enzyme": "^3.10.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.54.0",
"react": "^16.8.6",
"react-native": "^0.59.8",
"react-redux": "5.0.6",
"react-test-renderer": "^16.8.6",
"redux": "^4.0.1",
"redux-thunk": "2.2.0",
"reduxsauce": "0.7.0"
},
"jest": {
"modulePathIgnorePatterns": [
"PaginatableListExample/"
],
"preset": "react-native",
"testMatch": [
"<rootDir>/__tests__/**/*.[jt]s?(x)"
],
"setupFiles": [
"<rootDir>/testSetup.js"
]
}
}