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
75 lines (75 loc) · 1.8 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.8 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
69
70
71
72
73
74
75
{
"name": "react-native-modal",
"version": "11.5.1",
"description": "An enhanced React Native modal",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint \"src/**/*.{ts, tsx}\"",
"test": "yarn run test:ts && yarn run lint",
"release": "yarn semantic-release",
"build": "tsc",
"dev": "tsc --watch",
"test:ts": "tsc --noEmit"
},
"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",
"@types/react": "^16.9.9",
"@types/react-native": "^0.60.21",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-jest": "^24.9.0",
"eslint": "^6.5.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",
"typescript": "^3.6.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native"
}
}