package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "growi-plugin-pukiwiki-like-linker",
  3. "version": "3.1.0",
  4. "description": "GROWI plugin to add PukiwikiLikeLinker",
  5. "keywords": [
  6. "growi",
  7. "growi-plugin"
  8. ],
  9. "main": "src/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": {
  22. "type": "git",
  23. "url": "https://github.com/weseek/growi-plugin-pukiwiki-like-linker.git"
  24. },
  25. "author": "Yuki Takei <yuki@weseek.co.jp>",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/weseek/growi-plugin-pukiwiki-like-linker/issues"
  29. },
  30. "homepage": "https://github.com/weseek/growi-plugin-pukiwiki-like-linker#readme",
  31. "dependencies": {
  32. },
  33. "devDependencies": {
  34. "babel-eslint": "^10.0.1",
  35. "eslint": "^5.15.1",
  36. "eslint-config-weseek": "^1.0.1",
  37. "eslint-plugin-import": "^2.16.0",
  38. "npm-run-all": "^4.1.5",
  39. "prettier-stylelint": "^0.4.2"
  40. },
  41. "engines": {
  42. "node": ">=8.11.1 <15",
  43. "npm": ">=5.6.0 <7",
  44. "yarn": ">=1.5.1 <2"
  45. }
  46. }