package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@esri/calcite-colors",
  3. "version": "6.0.1",
  4. "description": "Authoritative color variables for Esri",
  5. "private": false,
  6. "homepage": "https://github.com/Esri/calcite-colors",
  7. "source": "src/colors.ts",
  8. "main": "dist/colors.js",
  9. "module": "dist/colors.module.js",
  10. "unpkg": "dist/colors.umd.js",
  11. "type": "module",
  12. "types": "dist/colors.d.ts",
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/Esri/calcite-colors.git"
  16. },
  17. "author": {
  18. "name": "Esri"
  19. },
  20. "contributors": [
  21. {
  22. "name": "Julio Ochoa",
  23. "email": "jochoa@esri.com"
  24. },
  25. {
  26. "name": "Paul Pederson",
  27. "email": "ppederson@esri.com"
  28. }
  29. ],
  30. "license": "SEE LICENSE IN README.md",
  31. "bugs": {
  32. "url": "https://github.com/esri/calcite-colors/issues"
  33. },
  34. "devDependencies": {
  35. "@types/node": "^14.11.1",
  36. "gh-release": "~1.1.3",
  37. "microbundle": "^0.12.4",
  38. "prettier": "2.1.1",
  39. "typescript": "4.0.2"
  40. },
  41. "scripts": {
  42. "build": "npm run prettier && microbundle && tsc && node build/scss.js",
  43. "dev": "microbundle watch",
  44. "release": "gh-release",
  45. "prettier": "prettier --write \"**/*.ts?(x)\""
  46. }
  47. }