forked from anvilabs/react-native-image-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.87 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
{
"name": "react-native-image-carousel",
"version": "0.4.6",
"description": "Image carousel with support for fullscreen mode with swiping and pinch-to-zoom.",
"homepage": "https://github.com/anvilabs/react-native-image-carousel",
"author": "Binur Konarbai <binchik@anvilabs.co>",
"repository": "anvilabs/react-native-image-carousel",
"license": "MIT",
"keywords": [
"react-native",
"image",
"carousel",
"fullscreen",
"lightbox",
"gallery",
"swipe",
"slide"
],
"main": "dist/index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"typecheck": "flow .",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"test": "run-p --silent typecheck lint",
"build": "rollup -c",
"precommit": "lint-staged",
"commitmsg": "commitlint -e",
"prepush": "nyr test"
},
"lint-staged": {
"{src,Example/app}/**/*.js": [
"eslint --cache --fix",
"git add"
]
},
"dependencies": {
"react-swipeable-views-native": "^0.13.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@commitlint/cli": "^4.2.2",
"@commitlint/config-angular": "^4.2.1",
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.10.0",
"eslint-config-anvilabs": "^16.0.0",
"eslint-config-anvilabs-react": "^16.0.0",
"flow-bin": "^0.56.0",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"npm-run-all": "^4.1.1",
"nyr": "^1.1.0",
"prettier": "^1.7.4",
"react": "^16.0.0",
"react-native": "^0.50.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-flow": "^1.1.1"
}
}