-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.13 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "node-simctl",
"version": "9.1.0",
"description": "Wrapper around Apple's simctl binary",
"keywords": [
"apple",
"ios",
"simctl"
],
"bugs": {
"url": "https://github.com/appium/node-simctl/issues"
},
"license": "Apache-2.0",
"author": "Appium Contributors",
"repository": {
"type": "git",
"url": "https://github.com/appium/node-simctl.git"
},
"bin": {},
"directories": {
"lib": "./lib"
},
"files": [
"lib",
"build/lib",
"CHANGELOG.md"
],
"type": "module",
"main": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"exports": {
".": {
"types": "./build/lib/index.d.ts",
"import": "./build/lib/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc -b",
"clean": "npm run build -- --clean",
"rebuild": "npm run clean; npm run build",
"dev": "npm run build -- --watch",
"lint": "oxlint -c oxlint.config.mjs .",
"lint:fix": "oxlint -c oxlint.config.mjs --fix .",
"format": "oxfmt -c oxfmt.config.mjs .",
"format:check": "oxfmt -c oxfmt.config.mjs --check .",
"prepare": "npm run build",
"test": "node --enable-source-maps --test --test-timeout=60000 \"./build/test/unit/**/*.spec.js\"",
"e2e-test": "node --enable-source-maps --test --test-force-exit --test-concurrency=1 --test-timeout=300000 \"./build/test/e2e/**/*.spec.js\""
},
"dependencies": {
"@appium/logger": "^2.0.0-rc.1",
"asyncbox": "^6.0.1",
"rimraf": "^6.0.1",
"semver": "^7.0.0",
"teen_process": "^4.0.4",
"which": "^6.0.0"
},
"devDependencies": {
"@appium/oxc-config": "^1.1.0",
"@appium/semantic-release-config": "^1.1.0",
"@appium/tsconfig": "^1.2.0",
"@appium/types": "^1.0.0-rc.1",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/node": "^26.0.0",
"@types/semver": "^7.7.1",
"@types/sinon": "^22.0.0",
"@types/which": "^3.0.4",
"appium-xcode": "^7.0.0",
"chai": "^6.0.0",
"chai-as-promised": "^8.0.0",
"sinon": "^22.0.0"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
"npm": ">=10"
}
}