-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.45 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
{
"name": "react-native-form-input-validator",
"version": "1.3.2",
"description": "Doing validation to form inputs in React Native app",
"author": "AT Mulyana <[email protected]>",
"license": "MIT",
"repository": "https://github.com/atmulyana/react-native-form-input-validator",
"keywords": [
"react-native",
"form",
"input",
"validation",
"validator"
],
"engines": {
"node": ">=14"
},
"main": "lib/index.js",
"scripts": {
"build": "babel lib --out-dir dist --copy-files",
"flow": "flow",
"prepublish": "npm run build",
"test": "jest"
},
"files": [
"dist",
"images",
"lib",
"rules.d.ts",
"rules.js",
"rules.js.flow"
],
"dependencies": {
"reactjs-common": ">=0.0.3"
},
"peerDependencies": {
"react": ">=16.8",
"react-is": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.15",
"babel-jest": "^29.6.4",
"flow-bin": "0.216.1",
"jest": "^29.6.4",
"metro-react-native-babel-preset": "^0.76.8",
"react": "^18.2.0",
"react-native": "^0.72.17",
"react-test-renderer": "^18.2.0"
},
"jest": {
"preset": "react-native",
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)",
"!**/example/**"
],
"transformIgnorePatterns": [
"node_modules/(?!(javascript-common|@react-native|react-native|reactjs-common)/)"
]
}
}