forked from react-native-modal/react-native-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "react-native-modal",
"version": "6.5.0",
"description": "An enhanced React-Native modal",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "eslint src",
"precommit": "lint-staged",
"test": "npm run lint",
"prettier": "prettier --write src/**/*.js",
"reset": "watchman watch-del-all && rm -rf node_modules/ && npm cache clean && npm prune && yarn cache clean"
},
"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.1",
"react-native-animatable": "^1.2.4"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.19.1",
"eslint-plugin-react-app": "^3.0.0",
"husky": "0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"react": ">=15.0.0",
"react-native": ">=0.24.0"
},
"lint-staged": {
"*.js": [
"eslint src",
"prettier --write",
"git add"
]
}
}