2015-12-13 04:42:28 +00:00
|
|
|
{
|
|
|
|
"name": "koel",
|
|
|
|
"author": "Phan An <me@phanan.net>",
|
2017-03-21 04:49:23 +00:00
|
|
|
"homepage": "https://koel.phanan.net",
|
2015-12-13 04:42:28 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"description": "A personal music streaming server that works",
|
|
|
|
"keywords": [
|
|
|
|
"music",
|
|
|
|
"audio",
|
|
|
|
"stream"
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/phanan/koel"
|
|
|
|
},
|
2017-02-12 14:42:39 +00:00
|
|
|
"babel": {
|
2017-02-14 06:53:02 +00:00
|
|
|
"presets": ["es2015"]
|
2017-02-12 14:42:39 +00:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "vue",
|
|
|
|
"rules": {
|
|
|
|
"no-multi-str": "off"
|
|
|
|
}
|
|
|
|
},
|
2016-06-29 04:19:47 +00:00
|
|
|
"dependencies": {
|
2016-12-01 10:54:28 +00:00
|
|
|
"alertify.js": "^1.0.12",
|
2016-12-20 15:44:47 +00:00
|
|
|
"axios": "^0.15.3",
|
2016-03-12 16:15:14 +00:00
|
|
|
"blueimp-md5": "^2.3.0",
|
2017-01-15 10:05:39 +00:00
|
|
|
"intersection-observer": "^0.2.0",
|
2016-03-12 16:15:14 +00:00
|
|
|
"ismobilejs": "^0.4.0",
|
2015-12-13 04:42:28 +00:00
|
|
|
"local-storage": "^1.4.2",
|
2017-02-14 06:53:02 +00:00
|
|
|
"lodash": "^4.16.2",
|
2016-12-20 15:44:47 +00:00
|
|
|
"nouislider": "^9.1.0",
|
2016-03-11 09:55:04 +00:00
|
|
|
"nprogress": "^0.2.0",
|
2016-05-08 09:24:34 +00:00
|
|
|
"plyr": "1.5.x",
|
2016-07-07 13:54:20 +00:00
|
|
|
"select": "^1.0.6",
|
2016-12-01 12:43:44 +00:00
|
|
|
"slugify": "^1.0.2",
|
2017-01-17 15:22:45 +00:00
|
|
|
"vue": "^2.1.9",
|
2017-01-14 13:09:38 +00:00
|
|
|
"vue-virtual-scroller": "^0.5.0",
|
|
|
|
"vuequery": "^1.0.0",
|
2016-07-30 15:32:17 +00:00
|
|
|
"youtube-player": "^3.0.4"
|
2015-12-13 04:42:28 +00:00
|
|
|
},
|
2016-06-29 04:19:47 +00:00
|
|
|
"devDependencies": {
|
2017-02-14 06:53:02 +00:00
|
|
|
"autoprefixer": "^6.7.2",
|
|
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
|
|
"babel-polyfill": "^6.23.0",
|
|
|
|
"babel-register": "^6.23.0",
|
|
|
|
"babel-runtime": "^6.22.0",
|
2016-06-29 04:19:47 +00:00
|
|
|
"chai": "^3.4.1",
|
2016-11-18 07:56:18 +00:00
|
|
|
"chalk": "^1.1.3",
|
2017-03-20 08:05:56 +00:00
|
|
|
"cross-env": "^3.2.3",
|
2016-11-26 03:25:35 +00:00
|
|
|
"eslint": "^3.10.2",
|
|
|
|
"eslint-config-vue": "^2.0.1",
|
|
|
|
"eslint-plugin-vue": "^1.0.0",
|
2017-02-14 06:53:02 +00:00
|
|
|
"font-awesome": "^4.7.0",
|
2016-06-29 04:19:47 +00:00
|
|
|
"jsdom": "^9.2.1",
|
2017-02-16 02:36:14 +00:00
|
|
|
"laravel-mix": "^0.8.0",
|
2016-06-29 04:19:47 +00:00
|
|
|
"mocha": "^2.3.4",
|
2016-12-06 05:44:49 +00:00
|
|
|
"node-sass": "^3.4.2",
|
2017-02-14 06:53:02 +00:00
|
|
|
"sinon": "^1.17.2"
|
2016-06-29 04:19:47 +00:00
|
|
|
},
|
2015-12-13 04:42:28 +00:00
|
|
|
"scripts": {
|
2017-02-14 06:53:02 +00:00
|
|
|
"postinstall": "yarn build",
|
2016-11-26 03:25:35 +00:00
|
|
|
"test": "eslint resources/assets/js --ext=js,vue && mocha --compilers js:babel-register --require resources/assets/js/tests/helper.js resources/assets/js/tests/**/*Test.js",
|
2017-03-20 08:05:56 +00:00
|
|
|
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules",
|
|
|
|
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules",
|
|
|
|
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot",
|
|
|
|
"build": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules"
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|
|
|
|
}
|