forked from bamlab/react-native-form-idable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.17 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
{
"name": "react-native-form-idable",
"version": "0.0.0-managed-by-semantic-release",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "eslint src && flow && jest",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commitmsg": "validate-commit-msg",
"commit": "git-cz",
"format": "prettier-eslint --write \"src/**/*.js\""
},
"author": "Almouro <[email protected]> (almouro.com)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "18.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-native": "^1.9.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.7.1",
"enzyme-to-json": "^1.5.0",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.38.0",
"husky": "^0.13.2",
"jest": "18.1.0",
"jsdom": "^9.12.0",
"mockdate": "^2.0.2",
"prettier-eslint-cli": "^4.3.2",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-native": "^0.42.3",
"semantic-release": "^7.0.2",
"validate-commit-msg": "^2.11.2"
},
"dependencies": {
"@bam.tech/react-native-modalbox": "^1.4.2",
"@bam.tech/react-native-root-siblings": "^1.2.1",
"@bam.tech/react-native-root-toast": "^1.3.1",
"date-fns": "^1.28.5",
"lodash": "^4.17.4",
"node-polyglot": "^2.2.2",
"validator": "^6.2.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/bamlab/react-native-form-idable"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!@exponent/ex-navigation",
")"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/example/"
],
"cacheDirectory": "<rootDir>/jest/tmp"
}
}