package.json 840 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "version": "1.6.0",
  3. "name": "tinycolor2",
  4. "description": "Fast Color Parsing and Manipulation",
  5. "url": "http://bgrins.github.com/TinyColor",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/bgrins/TinyColor.git"
  10. },
  11. "keywords": [
  12. "color",
  13. "parser",
  14. "tinycolor"
  15. ],
  16. "author": "Brian Grinstead <briangrinstead@gmail.com> (http://briangrinstead.com)",
  17. "bugs": {
  18. "url": "https://github.com/bgrins/TinyColor/issues"
  19. },
  20. "module": "./esm/tinycolor.js",
  21. "main": "./cjs/tinycolor.js",
  22. "browser": "./cjs/tinycolor.js",
  23. "exports": {
  24. ".": {
  25. "import": "./esm/tinycolor.js",
  26. "require": "./cjs/tinycolor.js"
  27. }
  28. },
  29. "scripts": {
  30. "test": "node cjs/test.js && node esm/test.js"
  31. },
  32. "devDependencies": {
  33. "@deno/shim-deno-test": "^0.4.0"
  34. }
  35. }