@u4/adbkit-monkey
Version:
A Node.js interface to the Android monkey tool.
54 lines • 1.37 kB
JSON
{
"name": "@u4/adbkit-monkey",
"version": "1.0.5",
"description": "A Node.js interface to the Android monkey tool.",
"keywords": [
"adb",
"adbkit",
"monkey",
"monkeyrunner"
],
"bugs": {
"url": "https://github.com/CyberAgent/adbkit-monkey/issues"
},
"license": "Apache-2.0",
"author": {
"name": "CyberAgent, Inc.",
"email": "npm@cyberagent.co.jp",
"url": "http://www.cyberagent.co.jp/"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/CyberAgent/adbkit-monkey.git"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.9",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"chai": "~4.3.6",
"eslint": "^8.22.0",
"mocha": "~9.2.2",
"sinon": "~13.0.2",
"sinon-chai": "~3.7.0",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"engines": {
"node": ">= 12.20.0"
},
"files": [
"lib"
],
"scripts": {
"prepublish": "npm run compile",
"compile": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"lint": "eslint ./src --ext .ts",
"format": "eslint ./src --ext .ts --fix",
"test": "mocha -r ts-node/register --reporter spec --colors test/**/*.ts"
}
}