-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "clisim",
"version": "2.5.0",
"description": "CLI for running iOS/Android Simulators/Emulators",
"main": "index.js",
"bin": {
"clisim": "./bin/clisim.js"
},
"scripts": {
"pub": "npm publish ./ --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isnifer/clisim.git"
},
"keywords": [
"cli",
"simulator",
"emulator",
"ios",
"android"
],
"authors": [
"Anton Kuznetsov <isnifer@gmail.com> (https://github.com/isnifer)",
"Anton Petrov <petrov.aap@gmail.com> (https://github.com/itsmepetrov)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/isnifer/clisim/issues"
},
"homepage": "https://github.com/isnifer/clisim#readme",
"dependencies": {
"adbkit": "^2.9.0",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"inquirer": "^7.0.0",
"node-simctl": "^5.2.0",
"semver-compare": "^1.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"@detools/eslint-config": "^1.2.0",
"eslint": "^6.7.0",
"prettier": "^1.19.1"
},
"eslintConfig": {
"extends": "@detools/eslint-config"
}
}