beekeeper-util
Version:
CLI utility for managing the beekeeper-service
85 lines • 2.28 kB
JSON
{
"name": "beekeeper-util",
"version": "12.1.2",
"description": "CLI utility for managing the beekeeper-service",
"keywords": [
"beekeeper"
],
"homepage": "https://github.com/octoblu/beekeeper-util",
"bugs": "https://github.com/octoblu/beekeeper-util/issues",
"author": {
"name": "Octoblu",
"url": "https://github.com/octoblu"
},
"main": "index.js",
"bin": {
"beekeeper-configure": "./command-configure.js",
"beekeeper-delete": "./command-delete.js",
"beekeeper-release": "./command-release.js",
"beekeeper-status": "./command-status.js",
"beekeeper-tag": "./command-tag.js",
"beekeeper-update": "./command-update.js",
"beekeeper-webhook": "./command-webhook.js",
"bkc": "./command-configure.js",
"bkr": "./command-release.js",
"bkt": "./command-tag.js",
"bks": "./command-status.js"
},
"repository": {
"type": "git",
"url": "https://github.com/octoblu/beekeeper-util.git"
},
"scripts": {
"start": "node command.js",
"test": "mocha",
"coverage": "nyc npm test",
"mocha:json": "env NPM_ENV=test mocha --reporter json > coverage/mocha.json",
"test:watch": "mocha -w -R mocha-multi --reporter-options spec=-,mocha-osx-reporter=-"
},
"dependencies": {
"@octoblu/docker-hub-api": "^1.0.2",
"chalk": "^2.1.0",
"console-clear": "^1.0.0",
"debug": "^2.6.8",
"dotenv": "^4.0.0",
"find-versions": "^2.0.0",
"fs-extra": "^4.0.1",
"lodash": "^4.17.4",
"node-notifier": "^5.1.2",
"octodash": "^2.0.0",
"ora": "^1.3.0",
"prettier": "^1.6.1",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"semver": "^5.4.1",
"semver-regex": "^1.0.0",
"simple-git": "^1.76.0",
"which": "^1.3.0"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.1.1",
"mocha": "^3.4.2",
"mocha-multi": "^0.11.0",
"mocha-osx-reporter": "^0.1.2",
"nock": "^9.0.14",
"nyc": "^11.0.2",
"sinon": "^2.3.5",
"sinon-chai": "^2.11.0",
"uuid": "^3.1.0"
},
"engines": {
"node": ">=8.3.0"
},
"engineStrict": true,
"license": "MIT",
"nyc": {
"cache": true,
"reporter": [
"text-summary",
"lcov",
"json"
],
"extension": []
}
}