package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "goober-global",
  3. "amdName": "gooberGlobal",
  4. "version": "0.0.1",
  5. "description": "The createGlobalStyles addon function for goober",
  6. "sideEffects": false,
  7. "main": "dist/goober-global.js",
  8. "module": "dist/goober-global.esm.js",
  9. "umd:main": "dist/goober-global.umd.js",
  10. "source": "src/index.js",
  11. "unpkg": "dist/goober-global.umd.js",
  12. "types": "./global.d.ts",
  13. "scripts": {
  14. "build": "rm -rf dist && microbundle --entry src/index.js --name gooberGlobal --no-sourcemap",
  15. "test": "jest"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/cristianbote/goober.git",
  20. "directory": "global"
  21. },
  22. "author": "Cristian <botecristian@yahoo.com>",
  23. "keywords": [
  24. "goober",
  25. "styled",
  26. "global"
  27. ],
  28. "license": "ISC",
  29. "peerDependencies": {
  30. "goober": "^2.0.29"
  31. },
  32. "devDependencies": {
  33. "goober": "^2.0.29",
  34. "microbundle": "^0.12.4",
  35. "jest": "^24.1.0",
  36. "preact": "^10.5.6",
  37. "@babel/plugin-transform-react-jsx": "^7.7.0",
  38. "@babel/preset-env": "^7.3.1",
  39. "babel-jest": "^24.1.0"
  40. }
  41. }