package.json 422 B

12345678910111213141516171819202122
  1. {
  2. "name": "@growi/ui",
  3. "version": "5.1.1",
  4. "description": "GROWI UI Libraries",
  5. "license": "MIT",
  6. "keywords": [
  7. "growi"
  8. ],
  9. "module": "dist/esm/index.js",
  10. "files": [
  11. "dist"
  12. ],
  13. "scripts": {
  14. "lint:js": "eslint **/*.{js,jsx,ts,tsx}",
  15. "lint": "npm-run-all -p lint:*",
  16. "test": "jest --verbose"
  17. },
  18. "devDependencies": {
  19. "eslint-plugin-regex": "^1.8.0",
  20. "react": "^16.8.3"
  21. }
  22. }