-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.18 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
{
"name": "rn-inspector-modules",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"execs-all": "bun run index.js",
"execs-dependencies": "bun run getModuleDependencies.js",
"execs-dev--dependencies": "bun run getModuleDevDependencies.js",
"execs-table--all": "bun run createTableAll.js",
"execs-table--deps": "bun run createTableDependencies.js",
"execs-table--devDependencies": "node createTableDevDependencies.js",
"execs-devs--cli-deps": "bun run displayDependenciesToCli.js",
"execs-devs--cli-devDependencies": "bun run displayDevDependenciesToCli.js"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/arwysyah/rn-inspector-v2.git"
},
"author": "arwysyah <[email protected]> (https://github.com/arwysyah)",
"license": "MIT",
"bugs": {
"url": "https://github.com/arwysyah/rn-inspector-v2/issues"
},
"homepage": "https://github.com/arwysyah/rn-inspector-v2#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"cli-table": "^0.3.11",
"picocolors": "^1.0.0"
}
}