forked from openstf/adbkit
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
84 lines (84 loc) · 2.22 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
{
"name": "@devicefarmer/adbkit",
"version": "3.3.7",
"description": "A Typescript client for the Android Debug Bridge.",
"keywords": [
"adb",
"adbkit",
"android",
"logcat",
"typescript",
"monkey"
],
"bin": {
"adbkit": "./bin/adbkit"
},
"bugs": {
"url": "https://github.com/devicefarmer/adbkit/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Device Farmer",
"email": "[email protected]",
"url": "https://devicefarmer.com/"
},
"contributors": [
{
"name": "uriel chemouni",
"email": "[email protected]",
"url": "https://urielch.github.io/urielch/"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/devicefarmer/adbkit.git"
},
"scripts": {
"clean": "rimraf dist index.d.ts index.js",
"keycode": "node tasks/keycode.js",
"prepublish": "npm run clean && npm run compile && npm run test",
"compile": "tsc -p .",
"compile2": "tsc -p tsconfig-dist.json",
"lint": "eslint ./ --ext .ts",
"format": "eslint ./ --ext .ts --fix",
"testJS": "mocha --reporter spec --colors dist/test/**/*.js",
"test": "mocha -r ts-node/register --reporter spec --colors test/**/*.ts"
},
"dependencies": {
"@devicefarmer/adbkit-logcat": "^2.1.2",
"@devicefarmer/adbkit-monkey": "~1.2.1",
"bluebird": "~3.7",
"commander": "^9.1.0",
"debug": "~4.3.1",
"node-forge": "^1.3.1",
"split": "~1.0.1"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/mocha": "^10.0.0",
"@types/node": "^18.15.11",
"@types/sinon-chai": "^3.2.5",
"@types/bluebird": "^3.5.33",
"@types/node-forge": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.48.0",
"bench": "~0.3.6",
"chai": "~4.3.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-progress": "0.0.1",
"mocha": "~10.2.0",
"prettier": "^3.0.2",
"rimraf": "^3.0.2",
"sinon": "~15.0.1",
"sinon-chai": "~3.7.0",
"ts-node": "^10.4.0",
"typescript": "^5.0.2"
},
"engines": {
"node": ">= 0.10.4"
}
}