forked from appium/appium-adb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.67 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
{
"name": "appium-adb",
"version": "9.11.5",
"description": "Android Debug Bridge interface",
"main": "./build/index.js",
"scripts": {
"build": "rimraf build && babel --out-dir=build/lib lib && babel --out-dir=build index.js",
"dev": "npm run build -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"precommit-lint": "lint-staged",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"prepare": "npm run build",
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
"e2e-test": "mocha --exit --timeout 5m \"./test/functional/**/*-specs.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-adb.git"
},
"author": "Appium Contributors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/appium/appium-adb/issues"
},
"engines": {
"node": ">=14",
"npm": ">=8"
},
"bin": {},
"directories": {
"lib": "lib"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"files": [
"index.js",
"keys",
"lib",
"build/index.js",
"build/lib",
"CHANGELOG.md"
],
"homepage": "https://github.com/appium/appium-adb",
"dependencies": {
"@appium/support": "^4.0.0",
"@babel/runtime": "^7.0.0",
"adbkit-apkreader": "^3.1.2",
"async-lock": "^1.0.0",
"asyncbox": "^2.6.0",
"bluebird": "^3.4.7",
"ini": "^3.0.0",
"lodash": "^4.0.0",
"lru-cache": "^7.3.0",
"semver": "^7.0.0",
"source-map-support": "^0.x",
"teen_process": "^2.0.1",
"utf7": "^1.0.2"
},
"pre-commit": [
"precommit-msg",
"precommit-lint"
],
"devDependencies": {
"@appium/eslint-config-appium": "^6.0.0",
"@appium/test-support": "^3.0.1",
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/register": "^7.18.9",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"babel-plugin-source-map-support": "^2.2.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-promise": "^6.0.0",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"pre-commit": "^1.1.3",
"prettier": "^2.7.1",
"rimraf": "^5.0.0",
"semantic-release": "^20.0.2",
"sinon": "^15.0.0",
"temp": "^0.x"
}
}