-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
64 lines (64 loc) · 1.57 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
{
"name": "react-native-viewpager-carousel",
"version": "0.3.2",
"author": "Tobias Meinhardt <[email protected]>",
"main": "index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "NODE_ENV=test jest --silent",
"testw": "NODE_ENV=test jest --watch --runInBand",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/meinto/react-native-viewpager-carousel"
},
"bugs": {
"url": "https://github.com/meinto/react-native-viewpager-carousel/issues"
},
"keywords": [
"react",
"react-native",
"viewpager",
"carousel"
],
"tags": [
"react",
"react-native",
"viewpager",
"carousel"
],
"license": "MIT",
"dependencies": {
"react-native-mirror": "0.0.21"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"prop-types": "*"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"coveralls": "3.0.2",
"jasmine-reporters": "2.3.2",
"jest-cli": "24.0.0",
"metro-react-native-babel-preset": "^0.51.1",
"prop-types": "15.6.2",
"react": "16.7.0",
"react-native": "0.58.1",
"react-native-cli": "2.0.1",
"react-test-renderer": "16.7.0"
},
"jest": {
"collectCoverage": true,
"modulePathIgnorePatterns": [
"<rootDir>/Examples/"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"preset": "react-native"
}
}