package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "growi-commons",
  3. "version": "3.0.0",
  4. "description": "GROWI Commons Libraries",
  5. "keywords": [
  6. "growi"
  7. ],
  8. "main": "src/index.js",
  9. "files": [
  10. "src"
  11. ],
  12. "scripts": {
  13. "lint:js:fix": "eslint **/*.{js,jsx} --fix",
  14. "lint:js": "eslint **/*.{js,jsx}",
  15. "lint:styles:fix": "prettier-stylelint --quiet --write src/styles/scss/**/*.scss",
  16. "lint:styles": "stylelint src/styles/scss/**/*.scss",
  17. "lint": "npm-run-all -p lint:js lint:styles",
  18. "test": ""
  19. },
  20. "repository": "https://github.com/weseek/growi-commons.git",
  21. "author": "Yuki Takei <yuki@weseek.co.jp>",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/weseek/growi-commons/issues"
  25. },
  26. "dependencies": {},
  27. "homepage": "https://github.com/weseek/growi-commons#readme",
  28. "devDependencies": {
  29. "babel-eslint": "^10.0.1",
  30. "babel-preset-env": "^1.7.0",
  31. "babel-preset-react": "^6.24.1",
  32. "eslint": "^5.15.1",
  33. "eslint-config-weseek": "^1.0.1",
  34. "eslint-plugin-chai-friendly": "^0.4.1",
  35. "eslint-plugin-import": "^2.16.0",
  36. "eslint-plugin-react": "^7.12.4",
  37. "prettier-stylelint": "^0.4.2"
  38. },
  39. "engines": {
  40. "node": ">=8.11.1 <11",
  41. "npm": ">=5.6.0 <7",
  42. "yarn": ">=1.5.1 <2"
  43. }
  44. }