package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "urlgrey": "^0.4.4"
  37. },
  38. "devDependencies": {
  39. "babel-cli": "^6.23.0",
  40. "babel-plugin-add-module-exports": "^0.2.1",
  41. "babel-plugin-transform-class-properties": "^6.23.0",
  42. "babel-preset-es2015": "^6.22.0",
  43. "babel-preset-power-assert": "^1.0.0",
  44. "babel-preset-react": "^6.23.0",
  45. "babel-register": "^6.23.0",
  46. "ncp": "^2.0.0",
  47. "power-assert": "^1.4.2",
  48. "rimraf": "^2.6.1"
  49. }
  50. }