sync/package.json

89 lines
2.6 KiB
JSON
Raw Normal View History

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",
2017-07-16 03:17:13 +00:00
"version": "3.41.1",
2014-01-22 05:29:26 +00:00
"repository": {
"url": "http://github.com/calzoneman/sync"
},
"license": "MIT",
2014-01-22 05:29:26 +00:00
"dependencies": {
2017-07-09 03:11:54 +00:00
"@calzoneman/jsli": "^2.0.1",
2015-09-23 05:08:46 +00:00
"bcrypt": "^0.8.5",
2015-09-27 18:07:57 +00:00
"bluebird": "^2.10.1",
2015-09-23 05:08:46 +00:00
"body-parser": "^1.14.0",
"cheerio": "^0.19.0",
"clone": "^1.0.2",
2015-09-23 05:08:46 +00:00
"compression": "^1.5.2",
"cookie-parser": "^1.4.0",
"create-error": "^0.3.1",
2015-09-23 05:08:46 +00:00
"csrf": "^3.0.0",
2016-04-28 04:55:25 +00:00
"cytube-common": "git://github.com/CyTube/cytube-common",
"cytube-mediaquery": "git://github.com/CyTube/mediaquery",
2016-01-08 08:08:08 +00:00
"cytubefilters": "git://github.com/calzoneman/cytubefilters#67c7c69a",
2015-09-23 05:08:46 +00:00
"express": "^4.13.3",
"express-minify": "^0.1.6",
"graceful-fs": "^4.1.2",
2015-02-23 00:15:22 +00:00
"http-errors": "^1.3.1",
2015-01-27 06:12:40 +00:00
"json-typecheck": "^0.1.3",
2017-05-29 05:39:27 +00:00
"knex": "^0.13.0",
2016-06-18 07:32:50 +00:00
"lodash": "^4.13.1",
2015-09-23 05:08:46 +00:00
"morgan": "^1.6.1",
"mysql": "^2.9.0",
"nodemailer": "^1.4.0",
2014-08-19 05:46:30 +00:00
"oauth": "^0.9.12",
"proxy-addr": "^1.1.4",
2016-07-07 13:53:06 +00:00
"pug": "^2.0.0-beta3",
2015-09-23 05:08:46 +00:00
"q": "^1.4.1",
"redis": "^2.4.2",
"sanitize-html": "^1.14.1",
2015-09-23 05:08:46 +00:00
"serve-static": "^1.10.0",
2017-07-15 21:56:36 +00:00
"socket.io": "^2.0.3",
2016-01-09 19:59:23 +00:00
"source-map-support": "^0.4.0",
2017-04-05 06:02:31 +00:00
"sprintf-js": "^1.0.3",
"status-message-polyfill": "git://github.com/calzoneman/status-message-polyfill",
"toml": "^2.3.0",
"uuid": "^2.0.1",
"yamljs": "^0.2.8"
2015-04-24 02:19:55 +00:00
},
"scripts": {
"build-player": "$npm_node_execpath 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",
"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/",
"generate-userscript": "$npm_node_execpath gdrive-userscript/generate-userscript $@ > www/js/cytube-google-drive.user.js",
2017-03-21 04:37:32 +00:00
"test": "mocha --recursive test",
"integration-test": "mocha --recursive integration_test"
2015-04-24 02:19:55 +00:00
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
2017-04-05 06:02:31 +00:00
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.5.2",
"coffee-script": "^1.9.2",
2017-04-05 06:02:31 +00:00
"flow-bin": "^0.43.0",
"mocha": "^3.2.0",
"sinon": "^2.3.2"
2016-09-19 05:08:43 +00:00
},
"babel": {
"presets": [
[
"env",
2016-09-19 05:08:43 +00:00
{
"targets": {
"node": "6"
}
2016-09-19 05:08:43 +00:00
}
]
],
"plugins": [
"transform-async-to-generator",
2017-04-05 06:02:31 +00:00
"add-module-exports",
"transform-flow-strip-types"
2016-09-19 05:08:43 +00:00
]
2014-01-22 05:29:26 +00:00
}
2013-04-14 23:16:48 +00:00
}