forked from anvilabs/react-native-image-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.84 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
68
69
70
71
{
"name": "react-native-image-carousel",
"version": "0.4.1",
"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": "validate-commit-msg",
"prepush": "nyr test"
},
"lint-staged": {
"{src,Example/app}/**/*.js": [
"eslint --cache --fix",
"git add"
]
},
"config": {
"validate-commit-msg": {
"maxSubjectLength": 72,
"types": "conventional-commit-types"
}
},
"dependencies": {
"react-swipeable-views-native": "^0.12.2"
},
"peerDependencies": {
"react": "^15.x.x",
"react-native": ">=0.40"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-anvilabs": "^9.1.1",
"flow-bin": "^0.48.0",
"husky": "^0.13.4",
"lint-staged": "^4.0.0",
"npm-run-all": "^4.0.2",
"nyr": "^1.1.0",
"prettier": "^1.4.4",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-flow": "^1.1.1",
"validate-commit-msg": "^2.12.2"
}
}