package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "notifications",
  3. "version": "2.2.0",
  4. "description": "This app provides a backend and frontend for the notification API available in Nextcloud.",
  5. "main": "init.js",
  6. "directories": {
  7. "lib": "lib",
  8. "test": "tests"
  9. },
  10. "scripts": {
  11. "dev": "cross-env NODE_ENV=development webpack --progress --hot --config js-src/webpack.config.js --watch",
  12. "build": "cross-env NODE_ENV=production webpack --progress --hide-modules --config js-src/webpack.config.js",
  13. "test": "echo \"Error: no test specified\" && exit 1"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/nextcloud/notifications.git"
  18. },
  19. "author": "Joas Schilling",
  20. "license": "AGPL-3.0",
  21. "bugs": {
  22. "url": "https://github.com/nextcloud/notifications/issues"
  23. },
  24. "homepage": "https://github.com/nextcloud/notifications#readme",
  25. "dependencies": {
  26. "vue": "^2.5.13",
  27. "vue-select": "^2.4.0"
  28. },
  29. "devDependencies": {
  30. "cross-env": "^5.1.3",
  31. "css-loader": "^0.28.8",
  32. "file-loader": "^1.1.6",
  33. "vue-loader": "^13.7.0",
  34. "vue-template-compiler": "^2.5.13",
  35. "webpack": "^3.6.0"
  36. }
  37. }