package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "crowi-plugin-lsx",
  3. "version": "1.0.2",
  4. "description": "The Crowi Plugin to add lsx tag",
  5. "keywords": [
  6. "crowi-plus",
  7. "crowi-plugin"
  8. ],
  9. "main": "lib/index.js",
  10. "files": [
  11. "lib"
  12. ],
  13. "scripts": {
  14. "build": "babel src --out-dir lib --source-maps inline",
  15. "clean": "npm cache clean && npm run rimraf -- lib",
  16. "postbuild": "ncp src/resource/css lib/resource/css",
  17. "prebuild": "npm run clean",
  18. "watch": "babel src --out-dir lib --watch --source-maps inline",
  19. "rimraf": "rimraf",
  20. "test": ""
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/weseek/crowi-plugin-lsx.git"
  25. },
  26. "author": "Yuki Takei <yuki@weseek.co.jp>",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/weseek/crowi-plugin-lsx/issues"
  30. },
  31. "homepage": "https://github.com/weseek/crowi-plugin-lsx#readme",
  32. "dependencies": {
  33. "crowi-pluginkit": "^1.0.3",
  34. "react": "^15.4.2",
  35. "react-dom": "^15.4.2"
  36. },
  37. "devDependencies": {
  38. "babel-cli": "^6.23.0",
  39. "babel-plugin-add-module-exports": "^0.2.1",
  40. "babel-plugin-transform-class-properties": "^6.23.0",
  41. "babel-preset-es2015": "^6.22.0",
  42. "babel-preset-power-assert": "^1.0.0",
  43. "babel-preset-react": "^6.23.0",
  44. "babel-register": "^6.23.0",
  45. "ncp": "^2.0.0",
  46. "power-assert": "^1.4.2",
  47. "rimraf": "^2.6.1"
  48. }
  49. }