12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "notifications",
- "version": "2.4.0",
- "description": "This app provides a backend and frontend for the notification API available in Nextcloud.",
- "main": "init.js",
- "directories": {
- "lib": "lib",
- "test": "tests"
- },
- "scripts": {
- "dev": "webpack --config webpack.dev.js",
- "watch": "webpack --progress --watch --config webpack.dev.js",
- "build": "webpack --progress --hide-modules --config webpack.prod.js"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/nextcloud/notifications.git"
- },
- "author": "Joas Schilling",
- "license": "AGPL-3.0",
- "bugs": {
- "url": "https://github.com/nextcloud/notifications/issues"
- },
- "homepage": "https://github.com/nextcloud/notifications#readme",
- "dependencies": {
- "nextcloud-vue": "^0.6.0",
- "v-tooltip": "^2.0.0-rc.33",
- "vue": "^2.5.22",
- "vue-click-outside": "^1.0.7"
- },
- "devDependencies": {
- "@babel/core": "^7.2.2",
- "@babel/preset-env": "^7.3.1",
- "babel-loader": "^8.0.5",
- "css-loader": "^2.1.0",
- "file-loader": "^3.0.1",
- "node-sass": "^4.11.0",
- "sass-loader": "^7.1.0",
- "style-loader": "^0.23.1",
- "vue-loader": "^15.6.2",
- "vue-template-compiler": "^2.5.22",
- "webpack": "^4.29.0",
- "webpack-cli": "^3.2.1",
- "webpack-merge": "^4.2.1"
- }
- }
|