UNPKG

echo-cli

Version:

A cross-platform CLI for outputting text to the command line. Supports escape sequences

49 lines (48 loc) 1.23 kB
{ "name": "echo-cli", "version": "2.0.0", "description": "A cross-platform CLI for outputting text to the command line. Supports escape sequences", "main": "dist/index.js", "bin": "dist/index.js", "scripts": { "build": "babel src -d dist", "pretest": "npm run build", "test": "ava test/index.js", "prepublish": "npm run test", "coverage": "nyc npm test", "precoverage-coveralls": "npm run coverage", "coverage-coveralls": "nyc report --reporter=text-lcov | coveralls" }, "repository": { "type": "git", "url": "git+https://github.com/iamakulov/echo-cli.git" }, "author": "Ivan Akulov <mail@iamakulov.com> (http://iamakulov.com/)", "license": "MIT", "bugs": { "url": "https://github.com/iamakulov/echo-cli/issues" }, "keywords": [ "echo", "cli", "print", "cross-platform" ], "homepage": "https://github.com/iamakulov/echo-cli#readme", "dependencies": { "unescape-js": "^1.0.3" }, "devDependencies": { "ava": "^0.14.0", "babel-cli": "^6.7.5", "babel-preset-es2015": "^6.6.0", "coveralls": "^2.11.9", "nyc": "^6.4.0" }, "babel": { "presets": [ "es2015" ] }, "packageManager": "yarn@3.1.1" }