forked from DeviceFarmer/adbkit
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
102 lines (102 loc) · 3.02 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
100
101
102
{
"name": "@u4/adbkit",
"version": "4.1.20",
"description": "A Typescript client for the Android Debug Bridge.",
"keywords": [
"adb",
"adbkit",
"android",
"logcat",
"typescript",
"monkey",
"scrcpy"
],
"bin": {
"adbkit": "./bin/adbkit"
},
"bugs": {
"url": "https://github.com/UrielCh/adbkit/issues"
},
"license": "Apache-2.0",
"funding": "https://github.com/sponsors/urielch",
"author": {
"name": "openstf",
"email": "contact@openstf.io",
"url": "https://urielch.github.io/"
},
"contributors": [
{
"name": "uriel chemouni",
"email": "uchemouni@gmail.com",
"url": "https://urielch.github.io/"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/UrielCh/adbkit.git"
},
"scripts": {
"clean": "rimraf dist",
"keycode": "ts-node tasks/keycode.ts",
"servicemap": "ts-node tasks/servicemap.ts",
"prepublish": "npm run clean && npm run compile",
"docs": "typedoc --entryPointStrategy expand",
"compile": "tsc -p .",
"build": "tsc -p .",
"lint": "eslint ./ --ext .ts",
"format": "eslint ./ --ext .ts --fix",
"test": "mocha -r tsx --reporter spec --colors test/**/*.ts",
"test2": "mocha -r tsx --reporter spec --colors test/adb/thirdparty/**/*.ts",
"test3": "mocha -r tsx --reporter spec --colors test/adb/command/host-transport/serviceCall.ts",
"ncu": "npx npm-check-updates -i"
},
"dependencies": {
"@u4/adbkit-logcat": "2.1.2",
"@u4/adbkit-monkey": "^1.0.5",
"@u4/minicap-prebuilt": "^1.0.0",
"@xmldom/xmldom": "^0.8.10",
"commander": "12.1.0",
"debug": "~4.3.7",
"get-port": "7.1.0",
"node-forge": "^1.3.1",
"promise-duplex": "^8.0.0",
"promise-readable": "^8.0.1",
"protobufjs": "^7.4.0",
"xpath": "^0.0.34"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.9",
"@types/node": "^20.11.7",
"@types/node-forge": "^1.3.11",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"chai": "~5.1.2",
"eslint": "^8.56.0",
"mocha": "~10.8.2",
"picocolors": "^1.1.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sinon": "~19.0.2",
"sinon-chai": "~4.0.0",
"tsx": "^4.19.2",
"typedoc": "^0.26.11",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typescript": "5.6.3",
"why-is-node-running": "^3.2.1"
},
"engines": {
"node": ">= 12.20.0"
},
"files": [
"dist",
"bin"
],
"optionalDependencies": {
"@devicefarmer/minicap-prebuilt": "^2.7.2"
}
}