package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "growi-pluginkit",
  3. "version": "1.1.0",
  4. "description": "The GROWI Plugin Kit to develop plugins",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "build": "babel src --out-dir lib --source-maps inline",
  11. "clean": "npm cache clean && npm run rimraf -- lib",
  12. "prebuild": "npm run clean",
  13. "prewatch": "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/weseek/growi-pluginkit.git"
  21. },
  22. "author": "Yuki Takei <yuki@weseek.co.jp>",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/weseek/growi-pluginkit/issues"
  26. },
  27. "dependencies": {},
  28. "homepage": "https://github.com/weseek/growi-pluginkit#readme",
  29. "devDependencies": {
  30. "babel-cli": "^6.26.0",
  31. "babel-plugin-add-module-exports": "^0.2.1",
  32. "babel-plugin-transform-class-properties": "^6.24.0",
  33. "babel-preset-env": "^1.6.0",
  34. "babel-preset-power-assert": "^2.0.0",
  35. "babel-register": "^6.23.0",
  36. "mocha": "^5.0.4",
  37. "power-assert": "^1.4.2",
  38. "rimraf": "^2.6.1"
  39. }
  40. }