package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "clean": "npm cache clean && npm run rimraf -- lib",
  12. "postbuild": "ncp 'src/resource/css' lib/resource/css",
  13. "prebuild": "npm run clean",
  14. "watch": "babel src --out-dir lib --watch --source-maps inline",
  15. "rimraf": "rimraf",
  16. "test": "mocha --compilers js:babel-register test/*.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/yuki-takei/crowi-plugin-lsx.git"
  21. },
  22. "author": "Yuki Takei <yuki@weseek.co.jp>",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/yuki-takei/crowi-plugin-lsx/issues"
  26. },
  27. "homepage": "https://github.com/yuki-takei/crowi-plugin-lsx#readme",
  28. "dependencies": {
  29. "react": "^15.4.2",
  30. "react-dom": "^15.4.2"
  31. },
  32. "devDependencies": {
  33. "babel-cli": "^6.23.0",
  34. "babel-plugin-add-module-exports": "^0.2.1",
  35. "babel-plugin-transform-class-properties": "^6.23.0",
  36. "babel-preset-es2015": "^6.22.0",
  37. "babel-preset-power-assert": "^1.0.0",
  38. "babel-preset-react": "^6.23.0",
  39. "babel-register": "^6.23.0",
  40. "ncp": "^2.0.0",
  41. "power-assert": "^1.4.2",
  42. "rimraf": "^2.6.1"
  43. }
  44. }