-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "react-native-bundle-visualizer",
"version": "3.1.3",
"description": "See what's inside your react-native bundle",
"author": "IjzerenHein <[email protected]>",
"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": {
"chalk": "^4.1.2",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"minimist": "^1.2.5",
"open": "^8.4.0",
"source-map-explorer": "^2.5.3"
},
"scripts": {
"test": "yarn test:rn && yarn test:expo",
"test:rn": "cd test/RN64 && yarn install && npx ../.. && cd ../..",
"test:expo": "cd test/Expo42 && yarn install && npx ../.. --expo=true && cd ../.."
}
}