forked from ubports/promise-android-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.4 KB
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
{
"name": "promise-android-tools",
"version": "2.0.5",
"description": "A wrapper for adb and fastboot that returns convenient promises.",
"main": "./src/module.js",
"scripts": {
"test": "mocha ./tests/unit-tests/*",
"test-travis": "./node_modules/nyc/bin/nyc.js --exclude=tests/* --reporter=lcov --reporter=text ./node_modules/mocha/bin/_mocha -- -R spec ./tests/unit-tests/* ./tests/integration.js",
"integration": "mocha ./tests/integration.js",
"lint": "./node_modules/.bin/eslint tests/unit-tests/*.js src/*.js",
"lint-fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubports/promise-android-tools.git"
},
"author": "Jan Sprinz <jan@ubports.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ubports/promise-android-tools/issues"
},
"keywords": [
"adb",
"fastboot",
"android",
"android-tools",
"ubports",
"ubuntu-touch"
],
"homepage": "https://github.com/ubports/promise-android-tools#readme",
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"command-exists": "^1.2.9",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^6.2.3",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0"
}
}