package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "crowi-plugin-lsx",
  3. "version": "1.2.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. "resources": "mkdirp lib/resource/css && ncp src/resource/css lib/resource/css",
  17. "prebuild": "npm run clean && npm run resources",
  18. "prewatch": "npm run clean && npm run resources",
  19. "watch": "babel src --out-dir lib --watch --source-maps inline",
  20. "rimraf": "rimraf",
  21. "test": ""
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/weseek/crowi-plugin-lsx.git"
  26. },
  27. "author": "Yuki Takei <yuki@weseek.co.jp>",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/weseek/crowi-plugin-lsx/issues"
  31. },
  32. "homepage": "https://github.com/weseek/crowi-plugin-lsx#readme",
  33. "dependencies": {
  34. "crowi-pluginkit": "^1.1.0",
  35. "react": "^15.4.2",
  36. "react-dom": "^15.4.2",
  37. "url": "^0.11.0"
  38. },
  39. "devDependencies": {
  40. "babel-cli": "^6.23.0",
  41. "babel-plugin-add-module-exports": "^0.2.1",
  42. "babel-plugin-transform-class-properties": "^6.23.0",
  43. "babel-preset-es2015": "^6.22.0",
  44. "babel-preset-power-assert": "^1.0.0",
  45. "babel-preset-react": "^6.23.0",
  46. "babel-register": "^6.23.0",
  47. "mkdirp": "^0.5.1",
  48. "ncp": "^2.0.0",
  49. "power-assert": "^1.4.2",
  50. "rimraf": "^2.6.1"
  51. }
  52. }