package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "growi-plugin-lsx",
  3. "version": "2.0.0",
  4. "description": "GROWI plugin to add lsx tag",
  5. "keywords": [
  6. "growi",
  7. "growi-plugin"
  8. ],
  9. "main": "lib/index.js",
  10. "files": [
  11. "lib", "src"
  12. ],
  13. "scripts": {
  14. "build:watch": "npm run build -- --watch",
  15. "build": "babel src --out-dir lib --source-maps inline",
  16. "clean": "npm run rimraf -- lib",
  17. "resources": "mkdirp lib/resource/css && ncp src/resource/css lib/resource/css",
  18. "prebuild:watch": "npm run clean && npm run resources",
  19. "prebuild": "npm run resources",
  20. "prepublish": "npm run clean && npm run resources && npm run build",
  21. "rimraf": "rimraf",
  22. "test": ""
  23. },
  24. "repository": "https://github.com/weseek/growi-plugin-lsx.git",
  25. "author": "Yuki Takei <yuki@weseek.co.jp>",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/weseek/growi-plugin-lsx/issues"
  29. },
  30. "homepage": "https://github.com/weseek/growi-plugin-lsx#readme",
  31. "dependencies": {
  32. "growi-pluginkit": "^1.1.0",
  33. "react": "^16.2.0",
  34. "react-dom": "^16.2.0",
  35. "url": "^0.11.0"
  36. },
  37. "devDependencies": {
  38. "babel-cli": "^6.24.1",
  39. "babel-preset-env": "^1.6.0",
  40. "babel-preset-power-assert": "^2.0.0",
  41. "babel-preset-react": "^6.24.1",
  42. "babel-register": "^6.23.0",
  43. "eslint": "^5.9.0",
  44. "eslint-plugin-react": "^7.11.1",
  45. "mkdirp": "^0.5.1",
  46. "mocha": "^5.0.4",
  47. "ncp": "^2.0.0",
  48. "power-assert": "^1.4.2",
  49. "rimraf": "^2.6.1"
  50. },
  51. "engines": {
  52. "node": ">=8.11.1 <9",
  53. "npm": ">=5.6.0 <7",
  54. "yarn": "^1.5.1"
  55. }
  56. }