forked from react-native-elements/react-native-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.13 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
{
"name": "react-native-elements",
"version": "0.11.1",
"description": "React Native Elements & UI Toolkit",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dabit3/React-Native-Elements.git"
},
"keywords": [
"react-native",
"reactjs",
"reactnative",
"bootstrap"
],
"scripts": {
"build": "rm -rf build; webpack",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"postinstall": "./node_modules/.bin/opencollective-postinstall || exit 0",
"lint": "eslint src/"
},
"peerDependencies": {
"react-native-vector-icons": "~4.0.0"
},
"author": "Nader Dabit",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-training/react-native-elements/issues"
},
"homepage": "https://github.com/react-native-training/react-native-elements#readme",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-native-elements",
"logo": "https://opencollective.com/react-native-elements/logo.txt"
},
"dependencies": {
"react-native-side-menu": "^0.20.1",
"react-native-tab-navigator": "^0.3.3"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.3.2",
"babel-preset-react-native": "^1.9.1",
"codecov": "^2.1.0",
"enzyme": "^2.8.0",
"enzyme-to-json": "^1.5.0",
"eslint": "^3.17.1",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-react-native": "^2.3.1",
"jest": "^19.0.2",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-native": "^0.41.2",
"react-native-vector-icons": "^4.0.0",
"webpack": "^2.2.1",
"opencollective-postinstall": "^1.0.15"
},
"jest": {
"preset": "react-native",
"coverageDirectory": "./coverage/",
"collectCoverageFrom" : [
"src/**/*.js",
"!src/index.js",
"!src/tabs/*.js",
"!src/sidemenu/*.js",
"!src/helpers/*.js"
],
"collectCoverage": true,
"globals": {
"__DEV__": true
}
}
}