forked from lawnstarter/react-native-picker-select
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 2.72 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
{
"name": "react-native-picker-select",
"version": "8.1.0",
"description": "A Picker component for React Native which emulates the native <select> interfaces for each platform",
"license": "MIT",
"author": "Michael Lefkowitz <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/lawnstarter/react-native-picker-select.git"
},
"main": "src/index.js",
"keywords": [
"dropdown",
"picker",
"select",
"react",
"react-native",
"react native",
"expo",
"items"
],
"files": [
"index.d.ts",
"/src"
],
"dependencies": {
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@react-native-picker/picker": ">=2.1.0",
"@types/react-native": "^0.60.22",
"babel-jest": "^23.6.0",
"babel-preset-react-native": "^4.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^2.4.0",
"jest": "^23.6.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"prop-types": "^15.7.2",
"react": "16.6.1",
"react-dom": "^16.6.1",
"react-native": "0.57.7",
"react-test-renderer": "^16.6.1"
},
"peerDependencies": {
"@react-native-picker/picker": ">=2.1.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"open:coverage": "open ./coverage/lcov-report/index.html",
"prettier:debug-check": "prettier --config ./.prettierrc.js --debug-check \"{src,test}/**/*.js\"",
"preprettier:all": "yarn run prettier:debug-check",
"prettier:all": "prettier --config ./.prettierrc.js --write \"{src,test}/**/*.js\"",
"lint": "echo \"---Running ESLint---\" && eslint \"src/**/*.{js,jsx}\""
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "echo \"---Running ESLint---\" && yarn lint && yarn test"
}
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./test/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transformIgnorePatterns": [
"node_modules/?!(@react-native-picker/picker)"
]
}
}