package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@growi/plugin-pukiwiki-like-linker",
  3. "version": "4.3.3-RC",
  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. "build": "yarn tsc && tsc-alias -p tsconfig.build.json",
  15. "tsc": "tsc -p tsconfig.build.json",
  16. "tsc:w": "yarn tsc -w",
  17. "lint:js:fix": "eslint **/*.{js,jsx} --fix",
  18. "lint:js": "eslint **/*.{js,jsx}",
  19. "lint:styles:fix": "stylelint --fix src/**/*.scss",
  20. "lint:styles": "stylelint src/**/*.scss",
  21. "lint": "npm-run-all -p lint:js lint:styles",
  22. "test": ""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/weseek/growi-plugin-pukiwiki-like-linker.git"
  27. },
  28. "author": "Yuki Takei <yuki@weseek.co.jp>",
  29. "dependencies": {
  30. },
  31. "devDependencies": {
  32. "@types/jest": "^26.0.22",
  33. "@typescript-eslint/eslint-plugin": "^4.28.5",
  34. "@typescript-eslint/parser": "^4.28.5",
  35. "browser-bunyan": "^1.6.3",
  36. "cross-env": "^7.0.0",
  37. "eslint": "^7.31.0",
  38. "eslint-config-weseek": "^1.1.0",
  39. "eslint-import-resolver-typescript": "^2.4.0",
  40. "eslint-plugin-import": "^2.23.4",
  41. "eslint-plugin-jest": "^24.3.2",
  42. "npm-run-all": "^4.1.2",
  43. "stylelint": "^13.2.0",
  44. "stylelint-config-recess-order": "^2.0.1",
  45. "ts-jest": "^26.5.4",
  46. "tsc-alias": "^1.2.9",
  47. "typescript": "^4.2.3"
  48. }
  49. }