2
0

package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. },
  43. "engines": {
  44. "node": ">=8.11.1 <11",
  45. "npm": ">=5.6.0 <7",
  46. "yarn": ">=1.5.1 <2"
  47. }
  48. }