-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
46
47
48
49
50
51
52
{
"name": "easy-android-emulator",
"description": "Create and run android emulators in a quick & easy manner with just device name/model.",
"version": "1.1.0",
"author": "Chrisvin Jem Peniel",
"bin": {
"emulate": "./bin/run"
},
"bugs": "https://github.com/Chrisvin/EasyAndroidEmulator/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.0",
"chalk": "^4.1.0",
"cli-ux": "^5.5.0",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.7",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src",
"/data/devices.csv"
],
"homepage": "https://github.com/Chrisvin/EasyAndroidEmulator",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "emulate"
},
"repository": "Chrisvin/EasyAndroidEmulator",
"scripts": {
"posttest": "eslint .",
"prepack": "oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}