This repository has been archived by the owner on May 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
93 lines (93 loc) · 2.59 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
{
"name": "react-native-formio",
"version": "0.0.1",
"description": "React native rendering library for form.io embedded forms.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"lint": "eslint src",
"prepublish": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/react-native-formio.git"
},
"keywords": [
"React",
"component",
"Formio",
"Forms",
"react--native-component"
],
"author": "Randall Knutson <randall@form.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/react-native-formio/issues"
},
"homepage": "https://github.com/formio/react-native-formio#readme",
"dependencies": {
"eventemitter2": "^5.0.1",
"json-logic-js": "^1.2.2",
"lodash": "^4.15.0",
"moment": "^2.22.2",
"prop-types": "^15.6.1",
"react-native-device-info": "^0.22.3",
"react-native-elements": "^0.19.1",
"react-native-htmlview": "^0.13.0",
"react-native-material-dropdown": "^0.11.1",
"react-native-modal-datetime-picker": "^6.0.0",
"react-native-multiple-select": "^0.4.4",
"react-native-select-multiple": "^1.2.0",
"react-native-signature-capture": "^0.4.9",
"react-native-simple-radio-button": "^2.7.2",
"react-native-vector-icons": "^4.6.0",
"react-text-mask-hoc": "^0.10.6",
"rn-tooltip": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-jest": "23.4.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-jest": "^23.2.0",
"babel-preset-react-native": "^4.0.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-config-formio": "^1.1.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-react-native": "^2.3.1",
"jest": "23.4.0",
"react": "^16.4.2",
"react-native": "^0.56.0",
"react-native-create-bridge": "^2.0.1",
"react-test-renderer": "^16.4.2",
"written-number": "^0.8.1"
},
"peerDependencies": {
"react": "^16.2.0",
"react-native": "*"
},
"files": [
"dist",
"lib",
"formio.css"
],
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
},
"setupFiles": [
"<rootDir>/test/.setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(react-native|react-native-clean-form|react-native-vector-icons|react-text-mask-hoc|react-native-elements|react-native-simple-radio-button)/)"
],
"moduleFileExtensions": [
"js",
"jsx"
]
}
}