package.json 966 B

1234567891011121314151617181920212223242526272829303132
  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. "watch": "babel src --out-dir lib --watch --source-maps inline",
  12. "test": "mocha --compilers js:babel-register test/*.js"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/yuki-takei/crowi-plugin-lsx.git"
  17. },
  18. "author": "Yuki Takei <yuki@weseek.co.jp>",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/yuki-takei/crowi-plugin-lsx/issues"
  22. },
  23. "homepage": "https://github.com/yuki-takei/crowi-plugin-lsx#readme",
  24. "devDependencies": {
  25. "babel-cli": "^6.23.0",
  26. "babel-plugin-add-module-exports": "^0.2.1",
  27. "babel-preset-es2015": "^6.22.0",
  28. "babel-preset-power-assert": "^1.0.0",
  29. "babel-register": "^6.23.0",
  30. "power-assert": "^1.4.2"
  31. }
  32. }