forked from jhaynie/iphonesim
-
Notifications
You must be signed in to change notification settings - Fork 253
/
package.json
99 lines (99 loc) · 2.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ios-sim",
"version": "9.0.0",
"preferGlobal": true,
"description": "launch iOS apps into the iOS Simulator from the command line (Xcode 8.0+)",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/ios-control/ios-sim"
},
"engines": {
"node": ">=8"
},
"keywords": [
"ios-sim",
"iOS Simulator"
],
"bin": {
"ios-sim": "./bin/ios-sim"
},
"bugs": {
"url": "https://github.com/ios-control/ios-sim/issues"
},
"author": "Shazron Abdullah",
"license": "Apache-2.0",
"files": [
"/oclif.manifest.json",
"/src",
"/bin"
],
"oclif": {
"commands": "./src/commands",
"bin": "ios-sim",
"devPlugins": [
"@oclif/plugin-help"
]
},
"dependencies": {
"@oclif/command": "^1.5.18",
"@oclif/config": "^1.13.3",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-help": "^2.2.1",
"bplist-parser": "^0.2.0",
"debug": "^4.1.1",
"nopt": "^4.0.1",
"plist": "^3.0.1",
"simctl": "^2.0.0"
},
"devDependencies": {
"@babel/compat-data": "^7.21.4",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"acorn": "^7.0.0",
"babel-jest": "^24.9.0",
"eol": "^0.9.1",
"eslint": "8",
"eslint-config-oclif": "^4",
"eslint-config-standard": "^17",
"eslint-plugin-jest": "^27",
"eslint-plugin-node": "^11",
"eslint-plugin-promise": "^6",
"jest": "^29",
"jest-junit": "^16",
"mock-fs": "^4.10.1",
"stdout-stderr": "^0.1.9"
},
"scripts": {
"test": "npm run unit-tests",
"posttest": "npm run eslint",
"unit-tests": "jest --ci",
"eslint": "eslint src test",
"prepack": "oclif-dev manifest && oclif-dev readme",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif-dev readme && git add README.md"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/jest.setup.js"
],
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/jest.setup.js"
]
},
"publishConfig": {
"access": "public"
}
}