2013-04-14 23:16:48 +00:00
|
|
|
{
|
2014-01-22 05:29:26 +00:00
|
|
|
"author": "Calvin Montgomery",
|
|
|
|
"name": "CyTube",
|
|
|
|
"description": "Online media synchronizer and chat",
|
2019-03-28 04:19:30 +00:00
|
|
|
"version": "3.63.5",
|
2014-01-22 05:29:26 +00:00
|
|
|
"repository": {
|
|
|
|
"url": "http://github.com/calzoneman/sync"
|
|
|
|
},
|
2015-09-21 05:06:53 +00:00
|
|
|
"license": "MIT",
|
2014-01-22 05:29:26 +00:00
|
|
|
"dependencies": {
|
2017-08-31 05:45:48 +00:00
|
|
|
"@calzoneman/express-babel-decorators": "^1.0.0",
|
2017-07-09 03:11:54 +00:00
|
|
|
"@calzoneman/jsli": "^2.0.1",
|
2018-06-04 04:18:54 +00:00
|
|
|
"bcrypt": "^2.0.1",
|
2018-02-16 03:58:33 +00:00
|
|
|
"bluebird": "^3.5.1",
|
|
|
|
"body-parser": "^1.18.2",
|
|
|
|
"cheerio": "^1.0.0-rc.2",
|
|
|
|
"clone": "^2.1.1",
|
2015-09-23 05:08:46 +00:00
|
|
|
"compression": "^1.5.2",
|
|
|
|
"cookie-parser": "^1.4.0",
|
2015-09-25 06:36:05 +00:00
|
|
|
"create-error": "^0.3.1",
|
2015-09-23 05:08:46 +00:00
|
|
|
"csrf": "^3.0.0",
|
2015-03-27 23:44:46 +00:00
|
|
|
"cytube-mediaquery": "git://github.com/CyTube/mediaquery",
|
2018-11-15 06:03:14 +00:00
|
|
|
"cytubefilters": "git://github.com/calzoneman/cytubefilters.git#ffdbce83c6cf806f9ae0983cc735230fefcfdb5a",
|
2018-02-16 03:58:33 +00:00
|
|
|
"express": "^4.16.2",
|
|
|
|
"express-minify": "^1.0.0",
|
2015-09-23 05:08:46 +00:00
|
|
|
"graceful-fs": "^4.1.2",
|
2015-01-27 06:12:40 +00:00
|
|
|
"json-typecheck": "^0.1.3",
|
2018-02-16 03:58:33 +00:00
|
|
|
"knex": "^0.14.3",
|
|
|
|
"lodash": "^4.17.5",
|
2015-09-23 05:08:46 +00:00
|
|
|
"morgan": "^1.6.1",
|
|
|
|
"mysql": "^2.9.0",
|
2018-02-16 03:58:33 +00:00
|
|
|
"nodemailer": "^4.4.2",
|
2017-07-17 05:35:33 +00:00
|
|
|
"prom-client": "^10.0.2",
|
2018-02-16 03:58:33 +00:00
|
|
|
"proxy-addr": "^2.0.2",
|
2016-07-07 13:53:06 +00:00
|
|
|
"pug": "^2.0.0-beta3",
|
2016-01-21 07:11:55 +00:00
|
|
|
"redis": "^2.4.2",
|
2017-03-04 07:51:47 +00:00
|
|
|
"sanitize-html": "^1.14.1",
|
2018-02-16 03:58:33 +00:00
|
|
|
"serve-static": "^1.13.2",
|
2017-07-15 21:56:36 +00:00
|
|
|
"socket.io": "^2.0.3",
|
2018-02-16 03:58:33 +00:00
|
|
|
"source-map-support": "^0.5.3",
|
2017-04-05 06:02:31 +00:00
|
|
|
"sprintf-js": "^1.0.3",
|
2016-10-15 19:36:20 +00:00
|
|
|
"toml": "^2.3.0",
|
2018-02-16 03:58:33 +00:00
|
|
|
"uuid": "^3.2.1",
|
2016-11-03 05:55:14 +00:00
|
|
|
"yamljs": "^0.2.8"
|
2015-04-24 02:19:55 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2018-01-07 23:42:08 +00:00
|
|
|
"build-player": "./bin/build-player.js",
|
2016-06-10 06:42:30 +00:00
|
|
|
"build-server": "babel -D --source-maps --loose es6.destructuring,es6.forOf --out-dir lib/ src/",
|
2017-04-05 06:02:31 +00:00
|
|
|
"flow": "flow",
|
2018-04-07 22:30:30 +00:00
|
|
|
"lint": "eslint src",
|
|
|
|
"pretest": "npm run lint",
|
2015-09-22 04:25:54 +00:00
|
|
|
"postinstall": "./postinstall.sh",
|
2016-08-16 04:00:56 +00:00
|
|
|
"server-dev": "babel -D --watch --source-maps --loose es6.destructuring,es6.forOf --out-dir lib/ src/",
|
2017-01-06 04:58:07 +00:00
|
|
|
"generate-userscript": "$npm_node_execpath gdrive-userscript/generate-userscript $@ > www/js/cytube-google-drive.user.js",
|
2018-06-04 04:55:41 +00:00
|
|
|
"test": "mocha --recursive --exit test",
|
|
|
|
"integration-test": "mocha --recursive --exit integration_test"
|
2015-04-24 02:19:55 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-06-04 04:55:41 +00:00
|
|
|
"babel-cli": "^6.26.0",
|
|
|
|
"babel-core": "^6.26.3",
|
2018-04-07 22:30:30 +00:00
|
|
|
"babel-eslint": "^8.2.2",
|
2017-06-21 06:16:33 +00:00
|
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
2017-08-31 05:45:48 +00:00
|
|
|
"babel-plugin-transform-decorators-legacy": "^1.3.4",
|
2017-06-21 06:16:33 +00:00
|
|
|
"babel-preset-env": "^1.5.2",
|
2018-01-07 23:42:08 +00:00
|
|
|
"coffeescript": "^1.9.2",
|
2018-04-07 22:30:30 +00:00
|
|
|
"eslint": "^4.19.1",
|
2018-06-04 04:55:41 +00:00
|
|
|
"mocha": "^5.2.0",
|
2017-06-01 05:46:06 +00:00
|
|
|
"sinon": "^2.3.2"
|
2016-09-19 05:08:43 +00:00
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"presets": [
|
|
|
|
[
|
2017-06-21 06:16:33 +00:00
|
|
|
"env",
|
2016-09-19 05:08:43 +00:00
|
|
|
{
|
2017-06-21 06:16:33 +00:00
|
|
|
"targets": {
|
2018-08-28 04:59:48 +00:00
|
|
|
"node": "8"
|
2017-06-21 06:16:33 +00:00
|
|
|
}
|
2016-09-19 05:08:43 +00:00
|
|
|
}
|
2017-06-21 06:16:33 +00:00
|
|
|
]
|
|
|
|
],
|
|
|
|
"plugins": [
|
2017-04-05 06:02:31 +00:00
|
|
|
"add-module-exports",
|
2017-08-31 05:45:48 +00:00
|
|
|
"transform-decorators-legacy"
|
2016-09-19 05:08:43 +00:00
|
|
|
]
|
2014-01-22 05:29:26 +00:00
|
|
|
}
|
2013-04-14 23:16:48 +00:00
|
|
|
}
|