forked from react-native-modal/react-native-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.51 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.51 KB
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
{
"name": "react-native-modal",
"version": "11.4.0",
"description": "An enhanced React Native modal",
"main": "src/index.js",
"types": "typings/index.d.ts",
"files": [
"src/",
"typings/"
],
"scripts": {
"lint": "eslint src",
"test": "yarn run lint",
"release": "yarn semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"react-native",
"react",
"native",
"modal",
"android",
"ios",
"backdrop",
"simple",
"animated"
],
"author": "Mazzarolo Matteo",
"license": "MIT",
"homepage": "https://github.com/react-native-community/react-native-modal",
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-modal"
},
"dependencies": {
"prop-types": "^15.6.2",
"react-native-animatable": "1.3.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.6.3",
"@react-native-community/eslint-config": "^0.0.5",
"@semantic-release/git": "^7.0.8",
"babel-jest": "^24.9.0",
"eslint": "^6.2.1",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"postinstall": "^0.5.1",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"react": "16.9.0",
"react-native": "0.61.0",
"react-test-renderer": "16.8.6",
"semantic-release": "15.13.24"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native"
}
}