overleaf/services/document-updater/package.json

45 lines
2 KiB
JSON
Raw Normal View History

2014-02-12 05:40:42 -05:00
{
"name": "document-updater-sharelatex",
2015-03-20 10:21:34 -04:00
"version": "0.1.4",
2014-08-19 09:06:56 -04:00
"description": "An API for applying incoming updates to documents in real-time",
"repository": {
"type": "git",
"url": "https://github.com/sharelatex/document-updater-sharelatex.git"
},
"scripts": {
"compile:app": "coffee -o app/js -c app/coffee && coffee -c app.coffee",
2018-02-15 11:28:40 -05:00
"start": "npm run compile:app && node app.js",
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
"test:acceptance": "npm run compile:app && npm run compile:acceptance_tests && npm run test:acceptance:_run -- $@",
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
"test:unit": "npm run compile:app && npm run compile:unit_tests && npm run test:unit:_run -- $@",
"compile:unit_tests": "[ -e test/unit ] && coffee -o test/unit/js -c test/unit/coffee || echo 'No unit tests to compile'",
"compile:acceptance_tests": "[ -e test/acceptance ] && coffee -o test/acceptance/js -c test/acceptance/coffee || echo 'No acceptance tests to compile'",
"compile:all": "npm run compile:app && npm run compile:unit_tests && npm run compile:acceptance_tests",
"nodemon": "nodemon --config nodemon.json"
},
2014-02-12 05:40:42 -05:00
"dependencies": {
2017-10-23 11:02:24 -04:00
"async": "^2.5.0",
"coffee-script": "~1.7.0",
2014-02-12 05:40:42 -05:00
"express": "3.3.4",
2017-03-30 09:16:35 -04:00
"logger-sharelatex": "git+https://github.com/sharelatex/logger-sharelatex.git#v1.5.6",
"lynx": "0.0.11",
2016-08-23 04:53:17 -04:00
"metrics-sharelatex": "git+https://github.com/sharelatex/metrics-sharelatex.git#v1.5.0",
"redis-sharelatex": "git+https://github.com/sharelatex/redis-sharelatex.git#v1.0.4",
2014-02-12 05:40:42 -05:00
"request": "2.25.0",
2017-07-17 05:08:21 -04:00
"requestretry": "^1.12.0",
2014-02-12 05:40:42 -05:00
"sandboxed-module": "~0.2.0",
2014-08-19 09:06:56 -04:00
"settings-sharelatex": "git+https://github.com/sharelatex/settings-sharelatex.git#v1.0.0",
2014-02-12 05:40:42 -05:00
"sinon": "~1.5.2",
"underscore": "1.2.2"
2014-02-12 05:40:42 -05:00
},
"devDependencies": {
"bunyan": "~0.22.1",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"cluster-key-slot": "^1.0.5",
2018-02-15 11:28:40 -05:00
"mocha": "^5.0.1",
2017-10-12 06:23:24 -04:00
"timekeeper": "^2.0.0"
2014-02-12 05:40:42 -05:00
}
}