-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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-modalview",
"version": "0.1.7",
"description": "An advanced and composable Modal component for react-native",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"precommit": "lint-staged",
"test": "npm run lint",
"flow": "flow",
"flow-check": "flow check --show-all-errors",
"prettier": "prettier --write --print-width 100 --single-quote --trailing-comma all src/**/*.js"
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add",
"npm run test"
]
},
"keywords": [
"react-native",
"react",
"native",
"modal",
"android",
"ios",
"backdrop",
"composable",
"animated"
],
"author": "Martin Rädlinger",
"license": "MIT",
"homepage": "https://github.com/artirigo/react-native-modalview",
"repository": {
"type": "git",
"url": "https://github.com/artirigo/react-native-modalview"
},
"dependencies": {
"prop-types": "15.5.10",
"ramda": "^0.24.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.3.0",
"eslint-plugin-react-app": "^1.0.2",
"flow-bin": "0.45.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.2",
"prettier": "^1.3.1",
"react": "16.0.0-alpha.12",
"react-native": "0.45.1"
}
}