forked from xcarpentier/react-native-country-picker-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.71 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
{
"name": "react-native-country-picker-modal",
"version": "0.2.7",
"description": "Country picker",
"main": "src/CountryPicker.js",
"repository": {
"type": "git",
"url": "git+https://github.com/xcarpentier/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": "Xavier Carpentier <[email protected]> (http://xaviercarpentier.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xcarpentier/react-native-country-picker-modal/issues"
},
"homepage": "https://github.com/xcarpentier/react-native-country-picker-modal#readme",
"dependencies": {
"babel-preset-react-native-stage-0": "1.0.1",
"lodash": "4.12.0",
"react-native-emoji": "1.2.0",
"world-countries": "1.8.0"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-eslint": "6.1.2",
"babel-preset-latest": "6.14.0",
"babel-preset-stage-2": "6.13.0",
"eslint": "^3.3.1",
"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"
}
}