forked from webraptor/react-native-deck-swiper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.52 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
{
"name": "react-native-deck-swiper",
"version": "2.0.11",
"description": "Awesome tinder like card swiper for react-native. Highly Customizable!",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"lint": "standard --verbose | snazzy",
"lintdiff": "git diff --name-only --cached --relative | grep '\\.js$' | xargs standard | snazzy",
"format": "prettier-eslint \"./**/*.js\" --ignore \"./node_modules/**\" --write",
"lint:fix": "eslint --fix Swiper.js index.js styles.js",
"clean-example": "cd example && rm -rf node_modules && yarn cache clean && yarn",
"run-ios-example": "cd example && npx react-native run-ios",
"run-android-example": "cd example && npx react-native run-android"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webraptor/react-native-deck-swiper.git"
},
"keywords": [
"react-native",
"react-native-component",
"tinder",
"cards",
"card",
"swipe",
"swiper",
"deck",
"animation"
],
"author": "Bogdan Pop / WebRaptor",
"license": "ISC",
"bugs": {
"url": "https://github.com/webraptor/react-native-deck-swiper/issues"
},
"homepage": "https://github.com/webraptor/react-native-deck-swiper#readme",
"dependencies": {
"prop-types": "15.5.10"
},
"peerDependencies": {
"react": "^16.0.0-beta.5 || ^17.0.0 || ^18.0.0",
"react-native": "^0.49.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.2.1",
"eslint-plugin-standard": "^3.0.1",
"jest": "18.1.0",
"jest-cli": "^18.1.0",
"lodash": "^4.17.5",
"prettier-eslint": "^6.4.2",
"prettier-eslint-cli": "^4.1.1",
"react-test-renderer": "15.4.2"
},
"jest": {
"preset": "react-native"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"standard",
"standard-react"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
}
}
}