package.json 1.2 KB

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