-
Notifications
You must be signed in to change notification settings - Fork 306
/
package.json
58 lines (58 loc) · 1.33 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
{
"name": "react-native-looped-carousel",
"version": "0.1.13",
"description": "Looped carousel for React Native",
"author": "Phil Rukin <[email protected]> (http://rukin.me)",
"contributors": [
{
"name": "Sergey Pronin",
"email": "[email protected]"
}
],
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"lint": "eslint index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/phil-r/react-native-looped-carousel"
},
"bugs": {
"url": "https://github.com/phil-r/react-native-looped-carousel/issues"
},
"keywords": [
"react",
"native",
"react-native",
"carousel",
"looped"
],
"license": "MIT",
"peerDependencies": {
"react": "^16.0.0",
"react-native": "^0.54.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.0",
"babel-preset-react-native": "^4.0.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"jest": "^23.0.0",
"react": "^16.2.0",
"react-native": "^0.55.1",
"react-test-renderer": "^16.2.0"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"prop-types": "^15.6.1"
},
"jest": {
"notify": true,
"preset": "react-native"
}
}