forked from peacechen/react-native-modal-selector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "react-native-modal-selector",
"version": "2.1.1",
"description": "A cross-platform (iOS / Android), selector/picker component for React Native that is highly customizable and supports sections.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postversion": "git push && git push --tags",
"lint": "./node_modules/.bin/eslint ./",
"lint-fix": "./node_modules/.bin/eslint --fix ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peacechen/react-native-modal-selector.git"
},
"keywords": [
"react-native",
"dropdown",
"popover",
"select",
"picker",
"modal",
"ios",
"android",
"react-component"
],
"dependencies": {
"prop-types": "^15.5.10"
},
"author": "Daniel Korger <dan@imake.io>",
"contributors": [
"Alex Spring <notlose@hotmail.com>",
"Peace Chen (https://github.com/peacechen)",
"mikaello"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/peacechen/react-native-modal-selector/issues"
},
"homepage": "https://github.com/peacechen/react-native-modal-selector",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"eslint": "^8.18.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-native": "^4.0.0"
}
}