forked from mmazzarolo/react-native-dialog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 839 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 839 Bytes
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
{
"name": "react-native-dialog",
"version": "5.5.0",
"description": "A flexible react-native dialog",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"test": "npm run lint",
"prettier": "prettier --write src/**/*.js"
},
"keywords": [
"react-native",
"dialog",
"alert",
"modal",
"button",
"input",
"switch"
],
"author": "Mazzarolo Matteo",
"license": "MIT",
"homepage": "https://github.com/mmazzarolo/react-native-dialog",
"repository": {
"type": "git",
"url": "https://github.com/mmazzarolo/react-native-dialog"
},
"dependencies": {
"prop-types": "^15.6.0",
"react-native-modal": "^6.4.0"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.6.0",
"eslint-plugin-react-app": "^3.0.0",
"prettier": "^1.10.2"
}
}