-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "@shopify/react-native-performance-navigation-drawer",
"version": "3.0.0",
"description": "Extension library atop @shopify/react-native-performance. Contains some utilities for easier profiling of apps using @react-navigation/drawer.",
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org/"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"react-native"
],
"author": "shopify",
"license": "MIT",
"scripts": {
"build": "tsc -b",
"lint": "yarn eslint . --ext .ts,.tsx",
"lint:fix": "yarn eslint . --ext .ts,.tsx --fix",
"test": "tsc -b && yarn jest"
},
"bugs": {
"url": "https://github.com/shopify/react-native-performance/issues"
},
"homepage": "https://github.com/shopify/react-native-performance#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/shopify/react-native-performance.git"
},
"peerDependencies": {
"@babel/runtime": "*",
"@react-navigation/drawer": "6.4.1",
"@shopify/react-native-performance": "^2.0.0",
"@shopify/react-native-performance-navigation": "^2.0.0",
"react": "^16.11.0",
"react-native": "^0.62.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "2.2.4"
},
"devDependencies": {
"@react-navigation/drawer": "6.4.1"
},
"files": [
"dist",
"src"
]
}