-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "@navigationjs/react-native",
"version": "0.32.7",
"description": "Simple and well-tested React Native navigation",
"main": "index.js",
"author": "Ivan Zotov <[email protected]> (http://ivanzotov.com/)",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/navigationjs/react-native.git"
},
"bugs": {
"url": "https://github.com/navigationjs/react-native/issues"
},
"homepage": "https://navigationjs.github.io/react-native/",
"keywords": [
"react",
"react-native",
"navigation"
],
"scripts": {
"test": "jest",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"format": "prettier --write '__tests__/**/*.js' 'src/**/*.js' 'index.js'"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@testing-library/react-native": "^5.0.0",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"prettier": "^1.16.4",
"react": "^16.11.0",
"react-native": "^0.61.2",
"react-test-renderer": "^16.11.0"
},
"jest": {
"preset": "@testing-library/react-native",
"testEnvironment": "node"
},
"dependencies": {
"@navigationjs/core": "0.8.0",
"@railsmob/events": "0.2.0"
}
}