package.json 640 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "text-hex",
  3. "version": "1.0.0",
  4. "description": "Generate a hex color from the given text",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec --ui bdd test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/3rd-Eden/text-hex"
  12. },
  13. "keywords": [
  14. "css",
  15. "color",
  16. "hex",
  17. "text"
  18. ],
  19. "author": "Arnout Kazemier",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/3rd-Eden/text-hex/issues"
  23. },
  24. "homepage": "https://github.com/3rd-Eden/text-hex",
  25. "devDependencies": {
  26. "assume": "2.1.x",
  27. "mocha": "5.2.x",
  28. "pre-commit": "1.2.x"
  29. }
  30. }