-
Notifications
You must be signed in to change notification settings - Fork 500
/
package.json
82 lines (82 loc) · 2.16 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
{
"name": "react-native-picker-select",
"version": "9.3.1",
"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",
"lodash.isobject": "^3.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@react-native-picker/picker": "^2.4.0",
"@types/react-native": "^0.60.22",
"babel-jest": "^23.6.0",
"babel-preset-react-native": "^4.0.1",
"cz-ls-commits": "^1.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^9.0.11",
"jest": "^23.6.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prop-types": "^15.7.2",
"react": "16.6.1",
"react-dom": "^16.6.1",
"react-native": "0.57.7",
"react-test-renderer": "^18.2.0"
},
"peerDependencies": {
"@react-native-picker/picker": "^2.4.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"open:coverage": "open ./coverage/lcov-report/index.html",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "yarn lint --fix",
"prepare": "husky"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./test/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transformIgnorePatterns": [
"node_modules/?!(@react-native-picker/picker)"
]
}
}