This repository has been archived by the owner on Oct 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
112 lines (112 loc) · 2.43 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
110
111
112
{
"name": "react-native-swiper-animated",
"version": "1.5.3",
"description": "Tinder-like swiper for react-native",
"main": "index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"pretest": "npm run lint --silent",
"lint": "eslint . --ext .js,.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chitezh/react-native-swiper-animated.git"
},
"keywords": [
"Tinder",
"Swiper",
"Flip",
"Cards",
"Stack"
],
"author": "Kingsley Ochu",
"license": "MIT",
"bugs": {
"url": "https://github.com/chitezh/react-native-swiper-animated/issues"
},
"homepage": "https://github.com/chitezh/react-native-swiper-animated#readme",
"dependencies": {
"clamp": "^1.0.1"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"jest": "18.1.0",
"react": "15.4.2",
"react-native": "0.40.0",
"react-test-renderer": "15.4.2"
},
"jest": {
"setupFiles": [
"./jest-setup.js"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true
},
"extends": "airbnb",
"rules": {
"prefer-template": 0,
"no-console": 0,
"import/no-extraneous-dependencies": 0,
"no-underscore-dangle": 0,
"react/forbid-prop-types": 0,
"react/no-array-index-key": 0,
"react/jsx-filename-extension": [
2,
{
"extensions": [
".js"
]
}
],
"import/no-unresolved": [
2,
{
"ignore": [
"^react$",
"^react-native$",
"^react-native/"
]
}
]
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".android.js",
".ios.js"
]
}
}
},
"globals": {
"__DEV__": true,
"jest": false,
"describe": false,
"it": true,
"expect": false
}
}
}