-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
46 lines (46 loc) · 1.5 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
{
"name": "react-native-country-picker-modal",
"version": "0.4.8",
"description": "Country picker",
"main": "src/CountryPicker.js",
"repository": {
"type": "git",
"url": "git+https://github.com/GetWala/wala-react-native-country-picker-modal.git"
},
"scripts": {
"lint": "eslint ./src",
"gendata": "rm -rf ./data/countries.json && babel-node ./scripts/transform-world-countries.js > ./data/countries.json",
"gendata-emoji": "rm -rf ./data/countries-emoji.json && babel-node ./scripts/transform-world-countries.js --emoji > ./data/countries-emoji.json",
"gendata-cca2": "rm -rf ./data/cca2.json && babel-node ./scripts/transform-world-countries.js --cca2 > ./data/cca2.json"
},
"keywords": [
"react-native",
"components",
"country-picker",
"country",
"flag"
],
"author": "Jared Leonard",
"license": "MIT",
"dependencies": {
"babel-preset-react-native-stage-0": "1.0.1",
"lodash": "4.17.4",
"node-emoji": "^1.8.1",
"react-native-searchbar": "^1.14.0",
"react-native-vector-icons": "^4.5.0",
"world-countries": "1.8.0"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-eslint": "6.1.2",
"babel-preset-react-native": "^3.0.2",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-async": "0.1.1",
"eslint-plugin-babel": "3.3.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"eslint-plugin-react-native": "2.0.0"
}
}