forked from Nubescope/react-native-navigation-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.26 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
76
77
78
79
{
"name": "react-native-navigation-hooks",
"version": "3.3.1",
"author": "Juan Pablo Garcia Dalolla <juanpablo@underscope.io>",
"bugs": {
"email": "juanpablo@underscope.io",
"url": "https://github.com/underscopeio/react-native-navigation-hooks"
},
"description": "A set of React hooks for React Native Navigation.",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/underscopeio/react-native-navigation-hooks#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist",
"repository": "github:underscopeio/react-native-navigation-hooks",
"peerDependencies": {
"react": ">=16.8.3",
"react-native": ">=0.59.0",
"react-native-navigation": ">=2.21.0"
},
"scripts": {
"lint": "eslint *.js",
"build": "rm -rf ./dist && tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"release": "semantic-release"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"@babel/preset-typescript": "7.7.2",
"@semantic-release/changelog": "3.0.6",
"@semantic-release/git": "7.0.18",
"@semantic-release/npm": "5.3.4",
"@testing-library/react-hooks": "3.2.1",
"@types/jest": "24.0.23",
"@types/react": "16.9.11",
"@types/react-native": ">=0.59.0",
"babel-eslint": "10.0.3",
"eslint": "6.4.0",
"eslint-config-prettier": "6.6.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "2.0.1",
"jest": "24.9.0",
"prettier": "1.19.1",
"react": ">=16.8.3",
"react-native": ">=0.59.0",
"react-native-navigation": ">=2.21.0",
"react-test-renderer": "16.12.0",
"semantic-release": "15.13.31",
"typescript": "3.7.2"
},
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
}
}