-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "react-native-flavor-cli",
"description": "this package will run your android react-native project based on you choice of flavors and dimensions ",
"version": "1.0.4",
"author": "Mohsen Hajibeigloo",
"bin": {
"rnf-cli": "./bin/run"
},
"bugs": "https://github.com/TheMichio/react-native-flavor-cli.git/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"clear": "^0.1.0",
"prompt-checkbox": "^2.2.0",
"readline-sync": "^1.4.9"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"chai": "^4",
"eslint": "^5.5",
"eslint-config-oclif": "^3.1",
"globby": "^8",
"mocha": "^5",
"nyc": "^13"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/TheMichio/react-native-flavor-cli.git",
"keywords": [
"oclif",
"flavor",
"product-flavors",
"multi-apk",
"android",
"react-native",
"cli"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "rnf-cli",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "TheMichio/react-native-flavor-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"version": "oclif-dev readme && git add README.md"
}
}