-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
41 lines (41 loc) · 1.32 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-native-bundle-visualizer",
"version": "2.3.0",
"description": "See what's inside your react-native bundle",
"author": "IjzerenHein <hrutjes@gmail.com>",
"keywords": [
"react-native-bundle-visualizer",
"react native bundle size",
"react-native",
"react native",
"bundle",
"visualizer",
"size",
"bundle-size"
],
"bin": "./src/react-native-bundle-visualizer.js",
"repository": "https://github.com/IjzerenHein/react-native-bundle-visualizer",
"bugs": "https://github.com/IjzerenHein/react-native-bundle-visualizer/issues",
"license": "MIT",
"files": [
"src"
],
"dependencies": {
"@expo/metro-config": "0.1.15",
"chalk": "^4.1.2",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"minimist": "^1.2.5",
"open": "^8.2.1",
"source-map-explorer": "^2.5.2"
},
"scripts": {
"test": "yarn test:rn && yarn test:expo",
"test:rn": "yarn test:rn:61 && yarn test:rn:64",
"test:rn:61": "cd test/RN61 && yarn install && npx ../.. && cd ../..",
"test:rn:64": "cd test/RN64 && yarn install && npx ../.. && cd ../..",
"test:expo": "yarn test:expo:36 && yarn test:expo:42",
"test:expo:36": "cd test/Expo36 && yarn install && npx ../.. --expo managed && cd ../..",
"test:expo:42": "cd test/Expo42 && yarn install && npx ../.. && cd ../.."
}
}