UNPKG

tap-on

Version:

A nicer way to handle tap output

59 lines (58 loc) 1.46 kB
{ "name": "tap-on", "version": "1.0.0", "description": "A nicer way to handle tap output", "main": "index.js", "type": "module", "scripts": { "prepack": "npm run lint", "test": "tape tests/pass.js | cross-env bin/tap-on", "test:fail": "tape tests/fail.js | cross-env bin/tap-on -u", "test:pf": "tape tests/passAndFail.js | cross-env bin/tap-on", "test:err": "tape tests/error.js | cross-env bin/tap-on", "test:no:color": "tape tests/pass.js | cross-env bin/tap-on --no-color", "lint": "standard index.js | snazzy" }, "bin": { "tap-on": "bin/tap-on" }, "repository": { "type": "git", "url": "git+https://github.com/dhershman1/tap-on.git" }, "keywords": [ "tape", "tap", "test", "pretty", "tap-on", "on-tap", "on", "tap", "output", "pretty", "colors", "cli", "terminal" ], "author": "Dustin Hershman <dustinh17@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/dhershman1/tap-on/issues" }, "homepage": "https://github.com/dhershman1/tap-on#readme", "dependencies": { "colorette": "2.0.20", "duplexer3": "1.0.0", "figures": "6.0.1", "minimist": "1.2.8", "tap-parser": "15.3.1", "through2": "4.0.2" }, "devDependencies": { "cross-env": "7.0.3", "snazzy": "9.0.0", "standard": "17.1.0", "tape": "5.7.4" } }