forked from lawnstarter/react-native-picker-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.88 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
87
88
89
90
91
92
93
94
{
"name": "@vgrid/react-native-picker-select",
"version": "1.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/vgrid/react-native-picker-select.git"
},
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.js",
"keywords": [
"dropdown",
"picker",
"select",
"react",
"react-native",
"react native",
"expo",
"items"
],
"files": [
"index.d.ts",
"/lib",
"/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.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.20.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^2.4.0",
"jest": "^23.6.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "0.57.7",
"react-native-builder-bob": "^0.18.3",
"react-test-renderer": "^16.6.1"
},
"peerDependencies": {
"@react-native-picker/picker": ">=2.1.0"
},
"scripts": {
"build": "bob build",
"test": "echo \"Tests tempoarily disabled due to bug in enzyme\"",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"open:coverage": "open ./coverage/lcov-report/index.html",
"prepare": "bob build",
"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)"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module"
]
}
}