forked from xcarpentier/react-native-country-picker-modal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.79 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
64
65
66
67
68
69
70
71
72
73
{
"name": "react-native-country-picker-modal",
"version": "0.8.0",
"description": "Country picker",
"main": "src/CountryPicker.js",
"types": "src/CountryPicker.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/xcarpentier/react-native-country-picker-modal.git"
},
"scripts": {
"lint": "eslint ./src",
"flow": "./node_modules/flow-bin/cli.js",
"test": "node_modules/jest/bin/jest.js",
"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",
"bump-patch-push": "yarn version --new-version `./scripts/version_increment.js patch` && git push --follow-tags",
"bump-minor-push": "yarn version --new-version `./scripts/version_increment.js minor` && git push --follow-tags",
"bump-major-push": "yarn version --new-version `./scripts/version_increment.js major` && git push --follow-tags",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"cleaning": "rm -rf node_modules && rm -f yarn.lock && yarn cache clean && yarn install && watchman watch-del-all && rm -fr $TMPDIR/react-*"
},
"keywords": [
"react-native",
"components",
"country-picker",
"country",
"flag"
],
"author": "Xavier Carpentier <[email protected]> (https://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": {
"fuse.js": "2.6.2",
"node-emoji": "1.8.1",
"prop-types": "15.6.0",
"react-native-safe-area-view": "^0.7.0",
"world-countries": "1.8.0"
},
"devDependencies": {
"@types/react": "^16.4.6",
"@types/react-native": "^0.55.26",
"babel-cli": "6.14.0",
"babel-eslint": "6.1.2",
"babel-jest": "23.0.1",
"babel-preset-react-native": "4.0.0",
"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",
"flow-bin": "^0.57.3",
"jest": "^23.1.0",
"react": "16.0.0",
"react-native": "0.50.3",
"react-test-renderer": "16.0.0",
"regenerator-runtime": "0.11.1",
"typescript": "^2.9.2"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/"
]
}
}