-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "@shopify/react-native-performance-navigation-bottom-tabs",
"version": "3.0.0",
"description": "Extension library atop @shopify/react-native-performance. Contains some utilities for easier profiling of apps using @react-navigation/bottom-tabs.",
"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/bottom-tabs": "^6.3.1",
"@shopify/react-native-performance": "^2.0.0",
"@shopify/react-native-performance-navigation": "^2.0.0",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-navigation/bottom-tabs": "^6.3.1"
},
"files": [
"dist",
"src"
]
}