package.json 626 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@growi/core",
  3. "version": "4.3.3-RC",
  4. "description": "GROWI Core Libraries",
  5. "license": "MIT",
  6. "keywords": [
  7. "growi"
  8. ],
  9. "main": "src/index.js",
  10. "files": [
  11. "src"
  12. ],
  13. "scripts": {
  14. "lint:js": "eslint **/*.{js,jsx}",
  15. "lint:styles": "stylelint src/styles/scss/**/*.scss",
  16. "lint": "npm-run-all -p lint:*",
  17. "test": "jest --verbose"
  18. },
  19. "dependencies": {},
  20. "devDependencies": {
  21. "jest": "^27.0.6",
  22. "jest-localstorage-mock": "^2.4.14",
  23. "npm-run-all": "^4.1.5",
  24. "ts-jest": "^27.0.4"
  25. },
  26. "jest": {
  27. "setupFiles": [
  28. "jest-localstorage-mock"
  29. ]
  30. }
  31. }