-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2 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
{
"name": "node-devicectl",
"description": "Node.js wrapper around Apple's devicectl tool",
"tags": [
"apple",
"ios",
"devicectl",
"device",
"xcode"
],
"version": "1.1.4",
"author": "Appium Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/node-devicectl.git"
},
"bugs": {
"url": "https://github.com/appium/node-devicectl/issues"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
"npm": ">=10"
},
"main": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"bin": {},
"directories": {
"lib": "./lib"
},
"files": [
"lib",
"build",
"CHANGELOG.md",
"!build/test"
],
"dependencies": {
"@appium/logger": "^2.0.0-rc.1",
"lodash": "^4.2.1",
"teen_process": "^4.0.4"
},
"scripts": {
"build": "tsc -b",
"clean": "npm run build -- --clean",
"rebuild": "npm run clean; npm run build",
"dev": "npm run build -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier -w ./lib ./test",
"format:check": "prettier --check ./lib ./test",
"prepare": "npm run build",
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.*js\"",
"e2e-test": "mocha --exit --timeout 5m \"./test/e2e/**/*-specs.js\""
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"devDependencies": {
"@appium/eslint-config-appium-ts": "^2.0.0-rc.1",
"@appium/tsconfig": "^1.0.0-rc.1",
"@appium/types": "^1.0.0-rc.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/lodash": "^4.14.196",
"@types/mocha": "^10.0.1",
"@types/node": "^25.0.3",
"chai": "^6.0.0",
"chai-as-promised": "^8.0.0",
"conventional-changelog-conventionalcommits": "^9.0.0",
"mocha": "^11.0.1",
"prettier": "^3.0.0",
"semantic-release": "^25.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.4.3"
}
}