Files
2026-09-08 20:28:54 +08:00

51 lines
1.1 KiB
JSON

{
"name": "adb-driver",
"version": "0.1.8",
"description": "A ADB(Android Debugging Bridge) command executor",
"files": [
"build",
"bin"
],
"main": "build/AdbDriver.js",
"license": "MIT",
"author": "cangpeng<dustyface@163.com>",
"scripts": {
"start": "tsc -w",
"clean": "rimraf build",
"format": "prettier \"{examples,lib,script,test}/**/*.{js,ts}\" \"*.yml\" --write",
"test": "jest",
"build": "npm run clean && tsc -p ./tsconfig.json"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/?(*.)(spec|test).(ts|tsx|js)",
"**/__tests__/*.(ts|tsx|js)",
"**/test/*.(ts|tsx|js)"
]
},
"devDependencies": {
"@types/jest": "23.3.11",
"@types/node": "10.12.18",
"@types/which": "^1.3.1",
"jest": "23.6.0",
"prettier": "1.15.3",
"rimraf": "2.6.3",
"ts-jest": "23.10.5",
"ts-node": "6.0.0",
"typescript": "3.2.4"
},
"dependencies": {
"which": "^1.3.1"
},
"gitHead": "58b25bdcf3334eb1dcd0f10329d327697086d203"
}