forked from bamlab/react-native-formik
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "react-native-formik",
"version": "0.0.0-development",
"description": "Make the most of your React Native forms with Formik",
"main": "index.js",
"type": "index.d.ts",
"scripts": {
"test": "eslint index.js src && jest --coverage",
"commitmsg": "validate-commit-msg",
"commit": "git-cz",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/bamlab/react-native-formik.git"
},
"keywords": [
"react-native",
"formik",
"forms"
],
"dependencies": {
"lodash": "^4.17.11",
"react-native-modalbox": "^1.7.1",
"react-native-root-siblings": "3.1.7",
"recompose": "^0.30.0",
"rxjs": "^6.4.0"
},
"author": "Almouro <[email protected]> (http://alexandremoureaux.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bamlab/react-native-formik/issues"
},
"homepage": "https://github.com/bamlab/react-native-formik#readme",
"devDependencies": {
"@babel/runtime": "^7.2.0",
"@types/react": "^16.8.6",
"babel-jest": "24.3.1",
"babel-preset-react-native": "5.0.2",
"commitizen": "^3.0.7",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^5.15.1",
"eslint-config-bambi": "^1.4.0",
"formik": "^1.0.2",
"husky": "^1.3.1",
"jest": "24.3.1",
"metro-react-native-babel-preset": "0.53.0",
"prettier": "^1.14.0",
"react": "16.8.4",
"react-dom": "16.8.4",
"react-native": "0.58.6",
"semantic-release": "^15.9.3",
"travis-deploy-once": "^5.0.1",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"formik": ">= 0.11.x < 2"
},
"eslintConfig": {
"extends": "bambi/native",
"rules": {
"no-unused-vars": "error"
}
}
}