{ "author": "Apache Software Foundation", "name": "plugman", "description": "install/uninstall Cordova plugins", "version": "4.0.0-dev", "repository": "github:apache/cordova-plugman", "bugs": "https://github.com/apache/cordova-plugman/issues", "main": "plugman.js", "engines": { "node": ">=20.5.0" }, "dependencies": { "cordova-lib": "^12.0.2", "loud-rejection": "^2.2.0", "nopt": "^8.1.0", "p-each-series": "^2.2.0", "p-try": "^2.2.0" }, "devDependencies": { "@cordova/eslint-config": "^5.1.0", "jasmine": "^5.8.0", "nyc": "^17.1.0", "rewire": "^9.0.0" }, "bin": { "plugman": "./bin.js" }, "scripts": { "test": "npm run lint && npm run test:coverage", "test:coverage": "nyc jasmine", "lint": "eslint ." }, "license": "Apache-2.0", "nyc": { "all": true, "exclude": [ "bin.js", "coverage/", "spec/" ], "reporter": [ "lcov", "text" ] } }