UNPKG

ansi-to

Version:

😹 export ANSI to HTML, SVG, PNG, w/ iTerm2 color support

84 lines (83 loc) • 1.51 kB
{ "name": "ansi-to", "main": "ansi-to", "version": "1.5.1", "description": "😹 export ANSI to HTML, SVG, PNG, w/ iTerm2 color support", "license": "MIT", "repository": "F1LT3R/ansi-to", "author": { "name": "F1LT3R", "email": "al@pwn.io", "url": "f1lt3r.io" }, "scripts": { "test": "xo && yarn run cover", "unit": "ava", "watch": "ava --watch", "cover": "nyc --reporter=lcov --reporter=html --reporter=text ava *.test.js", "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls -v", "precommit": "yarn test" }, "files": [ "index.js", "colors/ansi-tag-html-colors-as-hex.json", "ansi-tags-to-iterm2-color-names.js" ], "keywords": [ "ansi-to-html", "ansi-to-image", "ansi-to-svg", "ansi-to-dataurl", "ansi", "escape", "convert", "console", "color", "chalk", "terminal", "html", "image", "jpg", "png", "svg", "data url", "log" ], "dependencies": { "parse-ansi": "^1.0.3", "deepmerge": "^2.1.0", "itermcolors-to-hex": "^1.0.1" }, "devDependencies": { "ava": "^0.25.0", "coveralls": "^3.0.0", "git-hooks": "^1.1.10", "git-pre-commit": "^2.1.3", "html-colors": "^0.0.4", "nyc": "^11.6.0", "xo": "^0.20.3" }, "nyc": { "reporter": [ "lcov", "text" ] }, "xo": { "esnext": true, "semicolon": false, "globals": [ "__dirname" ], "rules": { "no-console": 1, "space-before-function-paren": 0 }, "ignores": [ "examples/**/*" ] }, "ava": { "failFast": true } }