UNPKG

binci

Version:

Utility for running containerized development workflows

99 lines (98 loc) 2.61 kB
{ "name": "binci", "version": "5.10.0", "description": "Utility for running containerized development workflows", "keywords": [ "docker", "container", "test", "testing", "dev", "workflow", "task" ], "engineStrict": true, "engines": { "node": ">=4" }, "main": "index.js", "files": [ "src", "index.js" ], "bin": { "binci": "index.js" }, "preferGlobal": true, "scripts": { "test": "npm run lint -s && npm run test:cover -s", "test:cover": "istanbul cover _mocha test/src/**/*.spec.js", "test:watch": "nodemon --exec \"npm run test:cover -s || exit 1\"", "e2e": "node test/system/run.js", "lint": "standard --fix --verbose | snazzy", "build": "npm run build:mac && npm run build:linux && npm run build:windows", "build:mac": "pkg . -t node6-mac --out-dir=./bin/mac", "build:linux": "pkg . -t node6-linux --out-dir=./bin/linux", "build:windows": "pkg . -t node6-win --out-dir=./bin/windows", "release:patch": "npm test && npm version patch && git push origin master && git push --tags && npm publish", "release:minor": "npm test && npm version minor && git push origin master && git push --tags && npm publish", "release:major": "npm test && npm version major && git push origin master && git push --tags && npm publish" }, "homepage": "https://github.com/Binci/binci", "repository": { "type": "git", "url": "https://github.com/Binci/binci" }, "bugs": { "url": "https://github.com/Binci/binci/issues" }, "author": "Kent Safranski <devteam+binci@technologyadvice.com>", "license": "MIT", "devDependencies": { "chai": "^3.3.0", "chai-as-promised": "^6.0.0", "dirty-chai": "^1.2.2", "istanbul": "^0.4.3", "mocha": "^2.3.3", "mocha-sinon": "^1.1.4", "nodemon": "^1.11.0", "pkg": "^3.0.4", "proxyquire": "^1.7.11", "rimraf": "^2.6.1", "sinon": "^1.17.0", "sinon-chai": "^2.8.0", "snazzy": "^6.0.0", "standard": "^8.6.0" }, "dependencies": { "bluebird": "^3.4.6", "chalk": "^1.1.1", "halcyon": "^0.19.1", "input": "^1.0.1", "js-yaml": "^3.4.2", "log-symbols": "^1.0.2", "minimist": "^1.2.0", "ora": "^0.3.0", "os-tmpdir": "^1.0.2", "semver-compare": "^1.0.0", "shortid": "^2.2.6", "update-notifier": "^2.1.0" }, "standard": { "ignore": [ "coverage" ], "globals": [ "describe", "before", "beforeEach", "after", "afterEach", "it", "expect", "sinon", "cwd", "proxyquire" ] } }