-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "promise-android-tools",
"version": "5.0.0",
"description": "A wrapper for adb, fastboot, and heimdall that returns convenient promises.",
"type": "module",
"main": "./lib/module.cjs",
"types": "./lib/module.d.ts",
"scripts": {
"test": "npx c8 -r text -r html -r lcov --all --src src/ -x \"**/*.spec.*\" -x \"**/__test-helpers\" ava src/*.spec.ts",
"lint": "npx prettier \"**\" --ignore-path=.gitignore --arrow-parens=avoid --trailing-comma=none --end-of-line=lf -uw",
"docs": "npx typedoc",
"build": "rm -rf lib && npx tsc --build ./tsconfig.build.json"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ubports/promise-android-tools.git"
},
"author": "Johannah Sprinz <[email protected]>",
"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",
"ava": {
"typescript": {
"rewritePaths": {
"src/": "test/"
},
"compile": "tsc"
}
},
"peerDependencies": {
"android-tools-bin": "^2.0.0"
},
"dependencies": {
"tslib": "^2.4.1",
"typescript-mix": "^3.1.3"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"ava": "^5.0.1",
"c8": "^7.12.0",
"prettier": "^2.7.1",
"testdouble": "^3.16.6",
"ts-node": "^10.9.1",
"typedoc": "^0.23.19",
"typescript": "^4.8.4"
}
}