2016-04-10 03:13:46 +00:00
{
"name" : "caspar-sup" ,
"version" : "1.0.0" ,
2016-04-10 08:37:05 +00:00
"description" : "CasparCG superimposed graphics project" ,
2016-04-10 03:13:46 +00:00
"main" : "index.js" ,
"scripts" : {
2017-12-03 11:34:43 +00:00
"build:styl" : "stylus -m app/styl/main.styl --out public" ,
"watch:styl" : "stylus -w -m app/styl/main.styl --out public" ,
"build-client:styl" : "stylus -m app/styl/client.styl --out public" ,
"watch-client:styl" : "stylus -w -m app/styl/client.styl --out public" ,
2018-06-26 18:35:12 +00:00
"build-status:styl" : "stylus -m app/styl/status.styl --out public" ,
"watch-status:styl" : "stylus -w -m app/styl/status.styl --out public" ,
"watch:js" : "watchify -t babelify app/main/index.js -o public/main.js --debug" ,
"build:js" : "browserify app/main/index.js -o public/main.js --debug -t [ babelify ]" ,
"watch-client:js" : "watchify -t babelify app/client/index.js -o public/client.js --debug" ,
"build-client:js" : "browserify app/client/index.js -o public/client.js --debug -t [ babelify ]" ,
"watch-status:js" : "watchify -t babelify app/status/index.js -o public/status.js --debug" ,
"build-status:js" : "browserify app/status/index.js -o public/status.js --debug -t [ babelify ]" ,
2017-12-03 11:34:43 +00:00
"watch:server" : "nodemon index.js" ,
"start" : "node index.js" ,
2018-06-26 19:19:38 +00:00
"start:win" : "node index.js | bunyan" ,
2018-06-26 18:35:12 +00:00
"dev-run" : "run-p watch:js watch-client:js watch-status:js watch:server watch:styl watch-client:styl watch-status:styl" ,
"prod-run" : "npm run build:js && npm run build-client:js && npm run build-status:js && npm run build:styl && npm run build-client:styl && npm run build-status:styl && npm start" ,
2018-06-26 19:19:38 +00:00
"build" : "npm run build:js && npm run build-client:js && npm run build-status:js && npm run build:styl && npm run build-client:styl && npm run build-status:styl" ,
2017-12-03 11:34:43 +00:00
"test" : "env NODE_ENV=test mocha --require babel-register --recursive --reporter dot" ,
"docker" : "docker run -it --rm --name my-running-script -v \"$PWD\":/usr/src/app -w /usr/src/app node:alpine" ,
"docker:test" : "npm run docker -- npm install && npm run test" ,
"docker:dev" : "npm run docker -- npm install && npm run dev-run" ,
"docker:run" : "npm run docker -- npm install && npm run prod-run"
2016-04-10 03:13:46 +00:00
} ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/nfp-projects/caspar-sup.git"
} ,
"keywords" : [
"Casparcg" ,
"superimposed" ,
"graphics"
] ,
"author" : "Jonatan Nilsson" ,
"license" : "WTFPL" ,
"bugs" : {
"url" : "https://github.com/nfp-projects/caspar-sup/issues"
} ,
2016-04-10 08:37:05 +00:00
"homepage" : "https://github.com/nfp-projects/caspar-sup#readme" ,
"dependencies" : {
2017-12-03 11:34:43 +00:00
"babel-plugin-transform-es2015-modules-commonjs" : "^6.26.0" ,
"babel-register" : "^6.26.0" ,
2018-07-15 04:00:42 +00:00
"bookshelf" : "^0.11.1" ,
2017-12-03 11:34:43 +00:00
"bunyan" : "^1.8.12" ,
2018-07-15 03:19:58 +00:00
"casparcg-connection" : "4.1.0" ,
2018-06-26 18:35:12 +00:00
"ip" : "^1.1.5" ,
2018-07-15 04:00:42 +00:00
"knex" : "^0.12.9" ,
2017-12-03 11:34:43 +00:00
"koa" : "^2.4.1" ,
"koa-better-serve" : "^2.0.7" ,
"koa-socket" : "^4.4.0" ,
"nconf" : "^0.9.1" ,
"socket.io" : "^2.0.4" ,
"sqlite3" : "^3.1.13"
2016-04-10 08:37:05 +00:00
} ,
"devDependencies" : {
2018-06-26 19:24:43 +00:00
"babelify" : "^8.0.0" ,
"browserify" : "^16.2.2" ,
2018-07-15 03:19:58 +00:00
"dragula" : "^3.7.2" ,
2018-06-26 18:35:12 +00:00
"eslint" : "^4.16.0" ,
"eslint-plugin-mocha" : "^4.11.0" ,
2018-07-15 03:19:58 +00:00
"mithril" : "^1.1.5" ,
2017-12-03 11:34:43 +00:00
"mocha" : "^4.0.1" ,
"nodemon" : "^1.12.1" ,
"npm-run-all" : "^4.1.2" ,
2018-07-15 03:19:58 +00:00
"socket.io-client" : "^2.0.4" ,
2017-12-03 11:34:43 +00:00
"stylus" : "^0.54.5" ,
"watchify" : "^3.9.0"
2016-04-10 08:37:05 +00:00
}
2016-04-10 03:13:46 +00:00
}