forked from gusparis/react-native-month-year-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "react-native-month-year-picker",
"title": "React Native Month Picker",
"version": "1.9.0",
"description": "React Native Month Picker component for iOS & Android",
"main": "src/index.js",
"types": "index.d.ts",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"run:android": "react-native run-android --root=\"./example\"",
"run:ios": "react-native run-ios --project-path=\"./example/ios\"",
"pod:install": "cd example/ios && rm -rf Pods/ && pod install",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src -c .eslintrc.js --ext js,jsx"
},
"repository": {
"type": "git",
"url": "https://github.com/gusparis/react-native-month-year-picker.git"
},
"keywords": [
"react-native",
"month-picker",
"month-year-picker",
"ios",
"android"
],
"author": {
"name": "Gustavo Dante Paris",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": ">= 16.11.0",
"react-native": ">= 0.60.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/runtime": "^7.14.6",
"@react-native-community/eslint-config": "^3.0.0",
"@semantic-release/git": "^9.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.30.0",
"metro-react-native-babel-preset": "0.66.1",
"react": "17.0.2",
"react-native": "0.65.0",
"semantic-release": "^19.0.5"
},
"dependencies": {
"invariant": "^2.2.4",
"moment": "^2.29.4"
}
}