-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
108 lines (108 loc) · 2.64 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-native-common",
"version": "3.1.1",
"description": "UI Toolset & Components and API Library for React Native with RTL support.",
"main": "src/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"start": "watchman watch-del-all && react-native start",
"ios": "react-native run-ios --simulator='iPhone 8'",
"android": "react-native run-android",
"pretest": "npm run lint",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build:ts": "rm -rf dist-ts && ./scripts/build-ts.sh",
"build:typings": "rm -rf ./typings && ./scripts/build-typings.sh && tsc"
},
"files": [
"src/",
"LICENSE",
"README.md"
],
"keyword": [
"react",
"react-native",
"react-native-common",
"components",
"animation",
"colors",
"extensions",
"forms",
"icons",
"modals",
"images",
"layout",
"rendering",
"styling",
"transformers",
"ios",
"android"
],
"author": {
"name": "Reza Ghorbani",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rghorbani/react-native-common/issues"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react-native-deprecated-custom-components": "^0.1.2",
"react-native-keyboard-aware-scrollview": "^2.0.0",
"react-native-ui-lib": "^3.39.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^24.9.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "^4.0.1",
"eslint": "^6.6.0",
"eslint-config-kajoo": "^1.5.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^8.1.5",
"react": "16.6.3",
"react-native": "0.57.8"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"src/components/navigator",
"/e2e/",
"/node_modules/",
"/typings/"
],
"setupFiles": [
"./jest-setup.js"
]
},
"rnpm": {
"android": {
"packageImportPath": "import com.wix.reactnativeuilib.textinput.TextInputDelKeyHandlerPackage;",
"packageInstance": "new TextInputDelKeyHandlerPackage()"
},
"ios": {
"project": "ios/reactnativeuilib.xcodeproj"
}
},
"homepage": "https://github.com/rghorbani/react-native-common",
"contributors": [
{
"name": "rghorbani",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/rghorbani/react-native-common"
}
}