forked from verisadmin/react-native-multiple-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "react-native-multiple-select",
"version": "0.5.3",
"description": "Simple multi-select component for react-native",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"test": "jest",
"lint": "eslint lib/"
},
"jest": {
"preset": "jest-react-native"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/toystars/react-native-multiple-select.git"
},
"keywords": [
"reactnative",
"multiselect",
"multi-select",
"react-native"
],
"author": "Mustapha Babatunde Oluwaleke",
"license": "MIT",
"bugs": {
"url": "https://github.com/toystars/react-native-multiple-select/issues"
},
"homepage": "https://github.com/toystars/react-native-multiple-select#readme",
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"babel-jest": "23.6.0",
"babel-preset-react-native": "^4.0.1",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-react-native": "^4.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-native": "^3.7.0",
"husky": "^0.14.3",
"jest": "^23.3.6",
"lint-staged": "^5.0.0",
"prettier": "^1.15.3",
"react-test-renderer": "16.6.3",
"remote-redux-devtools": "^0.5.16"
},
"peerDependencies": {
"lodash": "^4.17.14",
"react": "16.6.3",
"react-native": "^0.57.8",
"react-native-vector-icons": "^6.6.0"
}
}