forked from computerjazz/react-native-draggable-flatlist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.68 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.68 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
{
"name": "react-native-draggable-flatlist",
"version": "2.6.2",
"description": "A drag-and-drop-enabled FlatList component for React Native",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/computerjazz/react-native-draggable-flatlist.git"
},
"keywords": [
"react-native",
"sortable",
"draggable",
"flatlist",
"drag",
"drop",
"sort",
"list"
],
"author": "Daniel Merrill",
"license": "MIT",
"bugs": {
"url": "https://github.com/computerjazz/react-native-draggable-flatlist/issues"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"transformIgnorePatterns": []
},
"homepage": "https://github.com/computerjazz/react-native-draggable-flatlist#readme",
"peerDependencies": {
"react-native": ">=0.62.0",
"react-native-gesture-handler": ">=1.0.0",
"react-native-reanimated": ">=1.9.0"
},
"devDependencies": {
"@testing-library/react-native": "^7.2.0",
"@types/react": "^17.0.3",
"@types/react-native": "^0.64.2",
"babel-jest": "^26.6.3",
"husky": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^2.0.1",
"react": "^17.0.2",
"react-native": "^0.64.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.1.0",
"react-test-renderer": "^17.0.2",
"typescript": "^4.2.4"
}
}