package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "growi-plugin-attachment-refs",
  3. "version": "1.0.0",
  4. "description": "GROWI Plugin to add ref/refimg/refs/refsimg tags",
  5. "keywords": [
  6. "growi",
  7. "growi-plugin"
  8. ],
  9. "main": "index.js",
  10. "files": [
  11. "src"
  12. ],
  13. "scripts": {
  14. "lint:js:fix": "eslint **/*.{js,jsx} --fix",
  15. "lint:js": "eslint **/*.{js,jsx}",
  16. "lint:styles:fix": "prettier-stylelint --quiet --write src/**/*.scss",
  17. "lint:styles": "stylelint src/**/*.scss",
  18. "lint": "npm-run-all -p lint:js lint:styles",
  19. "test": ""
  20. },
  21. "repository": "https://github.com/weseek/growi-plugin-attachment-refs",
  22. "author": "Yuki Takei <yuki@weseek.co.jp>",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/weseek/growi-plugin-attachment-refs/issues"
  26. },
  27. "dependencies": {
  28. "growi-commons": "^4.0.1"
  29. },
  30. "devDependencies": {
  31. "babel-eslint": "^10.0.2",
  32. "babel-preset-env": "^1.7.0",
  33. "babel-preset-react": "^6.24.1",
  34. "eslint": "^5.15.1",
  35. "eslint-config-weseek": "^1.0.3",
  36. "eslint-plugin-import": "^2.16.0",
  37. "eslint-plugin-react": "^7.12.4",
  38. "npm-run-all": "^4.1.5",
  39. "prettier-stylelint": "^0.4.2",
  40. "react": "^16.4.1",
  41. "react-dom": "^16.4.1",
  42. "react-images": "^1.0.0"
  43. },
  44. "engines": {
  45. "node": ">=8.11.1 <11",
  46. "npm": ">=5.6.0 <7",
  47. "yarn": ">=1.5.1 <2"
  48. }
  49. }