-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "react-native-material-selectize",
"version": "1.18.0",
"description": "A React Native component inspired to Selectize which follows Material Design guidelines.",
"main": "index.js",
"types": "./src/index.d.ts",
"scripts": {
"lint": "eslint ./",
"fix": "eslint ./ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raynor85/react-native-material-selectize.git"
},
"keywords": [
"react",
"react-native",
"selectize",
"material",
"material-design"
],
"author": "Ruben Rizzi",
"license": "MIT",
"bugs": {
"url": "https://github.com/raynor85/react-native-material-selectize/issues"
},
"homepage": "https://github.com/raynor85/react-native-material-selectize#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"normalizr": "^3.3.0",
"prop-types": "^15.6.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.13.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0"
}
}