package.json 791 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "console-control-strings",
  3. "version": "1.1.0",
  4. "description": "A library of cross-platform tested terminal/console command strings for doing things like color and cursor positioning. This is a subset of both ansi and vt100. All control codes included work on both Windows & Unix-like OSes, except where noted.",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "test": "standard && tap test/*.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/iarna/console-control-strings"
  15. },
  16. "keywords": [],
  17. "author": "Rebecca Turner <me@re-becca.org> (http://re-becca.org/)",
  18. "license": "ISC",
  19. "files": [
  20. "LICENSE",
  21. "index.js"
  22. ],
  23. "devDependencies": {
  24. "standard": "^7.1.2",
  25. "tap": "^5.7.2"
  26. }
  27. }