package.json 917 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "colors",
  3. "description": "get colors in your node.js console",
  4. "version": "1.3.0",
  5. "author": "Marak Squires",
  6. "homepage": "https://github.com/Marak/colors.js",
  7. "bugs": "https://github.com/Marak/colors.js/issues",
  8. "keywords": [
  9. "ansi",
  10. "terminal",
  11. "colors"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "http://github.com/Marak/colors.js.git"
  16. },
  17. "license": "MIT",
  18. "scripts": {
  19. "lint": "eslint . --fix",
  20. "test": "node tests/basic-test.js && node tests/safe-test.js"
  21. },
  22. "engines": {
  23. "node": ">=0.1.90"
  24. },
  25. "main": "lib/index.js",
  26. "files": [
  27. "examples",
  28. "lib",
  29. "LICENSE",
  30. "safe.js",
  31. "themes",
  32. "index.d.ts",
  33. "safe.d.ts"
  34. ],
  35. "devDependencies": {
  36. "eslint": "^4.19.1",
  37. "eslint-config-google": "^0.9.1"
  38. }
  39. }