forked from ubports/promise-android-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "promise-android-tools",
"version": "4.0.10",
"description": "A wrapper for adb, fastboot, and heimdall that returns convenient promises.",
"main": "./lib/module.cjs",
"type": "module",
"scripts": {
"prepare": "npm run build",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"lint": "npx prettier \"**\" --ignore-path=.gitignore --arrow-parens=avoid --trailing-comma=none -uw",
"docs": "npx jsdoc -c jsdoc-config.json",
"build": "npx rollup -c"
},
"files": [
"lib/module.cjs",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ubports/promise-android-tools.git"
},
"author": "Johannah Sprinz <neo@neothethird.de>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ubports/promise-android-tools/issues"
},
"keywords": [
"adb",
"fastboot",
"heimdall",
"android",
"android-tools",
"ubports",
"ubuntu-touch"
],
"homepage": "https://github.com/ubports/promise-android-tools#readme",
"dependencies": {
"android-tools-bin": "^1.0.6",
"cancelable-promise": "^3.2.3",
"fs-extra": "^10.0.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"jsdoc": "^3.6.10",
"prettier": "^2.6.0",
"rollup": "^2.70.1"
}
}