-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "react-navigation-mobx-helpers",
"version": "2.0.1",
"description": "React-Navigation bindings for MobX",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Javascript-Ninja/react-navigation-mobx-helpers.git"
},
"keywords": [
"react-native",
"react-navigation",
"react-navigation",
"react-navigation-helpers",
"react-navigation-utils",
"mobx",
"react-navigation-mobx"
],
"author": "Raiden <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Javascript-Ninja/react-navigation-mobx-helpers/issues"
},
"homepage": "https://github.com/Javascript-Ninja/react-navigation-mobx-helpers#readme",
"dependencies": {
"@types/react-navigation": "^2.0.9",
"react-navigation": "^2.5.5"
},
"devDependencies": {
"mobx": "^5.0.3",
"typescript": "^2.9.2"
},
"peerDependencies": {
"mobx": ">=3.0.0",
"react-navigation": "^2.x"
}
}