{ "name": "node-red-admin", "version": "2.1.0", "description": "The Node-RED admin command line interface", "homepage": "http://nodered.org", "bugs": { "url": "https://github.com/node-red/node-red-admin/issues/" }, "license": "Apache-2.0", "repository": { "type": "git", "url": "https://github.com/node-red/node-red-admin.git" }, "main": "lib/index.js", "engines": { "node": ">=12" }, "contributors": [ { "name": "Nick O'Leary" }, { "name": "Anna Thomas" } ], "scripts": { "test": "nyc mocha", "coverage": "nyc report --reporter=lcov" }, "dependencies": { "ansi-colors": "^4.1.1", "axios": "0.21.1", "bcryptjs": "^2.4.3", "cli-table": "^0.3.4", "enquirer": "^2.3.6", "minimist": "^1.2.5", "mustache": "^4.2.0", "read": "^1.0.7" }, "devDependencies": { "coveralls": "^3.1.1", "mocha": "^9.0.1", "nyc": "^15.1.0", "should": "^13.2.3", "sinon": "^11.1.1", "sinon-test": "^3.1.0" }, "optionalDependencies": { "bcrypt": "5.0.1" }, "bin": { "node-red-admin": "node-red-admin.js" }, "mocha": { "spec:": "test/**/*.spec.js", "diff": true, "extension": [ "js" ], "opts": false, "package": "./package.json", "reporter": "spec", "slow": 75, "timeout": 2000, "ui": "bdd", "recursive": "true", "watch-files": [ "lib/**/*.js", "test/**/*.js" ], "watch-ignore": [ "lib/vendor" ] } }