-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.35 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.35 KB
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
{
"name": "react-native-formawesome",
"version": "1.0.1",
"description": "React-Native UI lib for validation forms",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/jest --no-cache --detectOpenHandles --forceExit",
"build": "npm run flow",
"lint": "./node_modules/.bin/eslint .",
"flow": "./node_modules/.bin/flow",
"stage": "npm run lint && npm run flow",
"prepublishOnly": "npm run stage && npm run test",
"install:types": "./node_modules/.bin/flow-typed install --libdefDir ./node_modules/@flow-typed"
},
"repository": {
"type": "git",
"url": "https://github.com/MAKARD/react-native-formawesome"
},
"keywords": [
"ui",
"native",
"react",
"react-native",
"validation",
"class-validator",
"validate.js",
"form",
"react-formawesome-core"
],
"author": "Makarenko Dmitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/MAKARD/react-native-formawesome/issues"
},
"homepage": "https://github.com/MAKARD/react-native-formawesome",
"devDependencies": {
"@babel/core": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-preset-react-native": "^5.0.2",
"codecov": "^3.1.0",
"eslint": "^5.6.1",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.82.0",
"flow-typed": "^2.5.1",
"jest": "^29.4.1",
"metro-react-native-babel-preset": "^0.47.1",
"pre-commit": "^1.2.2",
"prop-types": "^15.6.2",
"react": "^16.8.2",
"react-formawesome-core": "^1.0.1",
"react-native": "^0.71.3",
"react-test-renderer": "^16.5.2",
"schedule": "0.4.0"
},
"peerDependencies": {
"react": "^16.5.2",
"prop-types": "^15.6.2",
"react-native": "^0.57.1",
"react-formawesome-core": "^1.0.1"
},
"jest": {
"notify": true,
"preset": "react-native",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"/core.js",
"/core-types.js",
"/node_modules/"
],
"transform": {
"^.+\\.js$": "<rootDir>/jest-preprocessor.js"
}
},
"pre-commit": [
"stage",
"test"
],
"dependencies": {}
}