2014-04-28 11:45:59 -04:00
|
|
|
{
|
|
|
|
"name": "docstore-sharelatex",
|
2015-02-10 08:22:28 -05:00
|
|
|
"version": "0.1.2",
|
2014-04-28 11:45:59 -04:00
|
|
|
"description": "A CRUD API for handling text documents in projects",
|
|
|
|
"author": "ShareLaTeX <team@sharelatex>",
|
2014-08-19 08:37:06 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/sharelatex/docstore-sharelatex.git"
|
|
|
|
},
|
2017-12-29 03:12:31 -05:00
|
|
|
"scripts": {
|
2018-12-11 09:49:29 -05:00
|
|
|
"compile:app": "([ -e app/coffee ] && coffee -m $COFFEE_OPTIONS -o app/js -c app/coffee || echo 'No CoffeeScript folder to compile') && ( [ -e app.coffee ] && coffee -m $COFFEE_OPTIONS -c app.coffee || echo 'No CoffeeScript app to compile')",
|
2018-05-23 06:27:31 -04:00
|
|
|
"start": "npm run compile:app && node $NODE_APP_OPTIONS app.js",
|
2018-09-28 07:13:53 -04:00
|
|
|
"test:acceptance:_run": "AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY AWS_BUCKET=$AWS_BUCKET AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID mocha --recursive --reporter spec --timeout 30000 --exit $@ test/acceptance/js",
|
2018-05-23 06:27:31 -04:00
|
|
|
"test:acceptance": "npm run compile:app && npm run compile:acceptance_tests && npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
2018-05-29 08:59:19 -04:00
|
|
|
"test:unit:_run": "mocha --recursive --reporter spec --exit $@ test/unit/js",
|
2018-05-23 06:27:31 -04:00
|
|
|
"test:unit": "npm run compile:app && npm run compile:unit_tests && npm run test:unit:_run -- --grep=$MOCHA_GREP",
|
|
|
|
"compile:unit_tests": "[ ! -e test/unit/coffee ] && echo 'No unit tests to compile' || coffee -o test/unit/js -c test/unit/coffee",
|
|
|
|
"compile:acceptance_tests": "[ ! -e test/acceptance/coffee ] && echo 'No acceptance tests to compile' || coffee -o test/acceptance/js -c test/acceptance/coffee",
|
2018-09-28 07:13:53 -04:00
|
|
|
"compile:all": "npm run compile:app && npm run compile:unit_tests && npm run compile:acceptance_tests && npm run compile:smoke_tests",
|
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
|
|
|
"compile:smoke_tests": "[ ! -e test/smoke/coffee ] && echo 'No smoke tests to compile' || coffee -o test/smoke/js -c test/smoke/coffee"
|
2017-12-29 03:12:31 -05:00
|
|
|
},
|
2014-04-28 11:45:59 -04:00
|
|
|
"dependencies": {
|
2017-12-29 05:35:40 -05:00
|
|
|
"async": "~0.8.0",
|
|
|
|
"body-parser": "~1.0.2",
|
2018-12-11 09:34:39 -05:00
|
|
|
"coffee-script": "^1.12.7",
|
2017-12-29 05:35:40 -05:00
|
|
|
"express": "~4.1.1",
|
2016-06-03 05:58:53 -04:00
|
|
|
"logger-sharelatex": "git+https://github.com/sharelatex/logger-sharelatex.git#v1.4.0",
|
2018-12-11 09:17:38 -05:00
|
|
|
"metrics-sharelatex": "git+https://github.com/sharelatex/metrics-sharelatex.git#v2.0.10",
|
2017-08-22 03:26:30 -04:00
|
|
|
"mongojs": "2.4.0",
|
2017-12-29 05:35:40 -05:00
|
|
|
"settings-sharelatex": "git+https://github.com/sharelatex/settings-sharelatex.git#v1.0.0",
|
|
|
|
"underscore": "~1.6.0"
|
2014-04-28 11:45:59 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-12-29 05:35:40 -05:00
|
|
|
"bunyan": "~0.22.3",
|
|
|
|
"chai": "~1.9.1",
|
2018-05-23 06:27:31 -04:00
|
|
|
"mocha": "^4.0.1",
|
2017-12-29 05:35:40 -05:00
|
|
|
"request": "~2.34.0",
|
2014-04-28 11:45:59 -04:00
|
|
|
"sandboxed-module": "~0.3.0",
|
2017-12-29 05:35:40 -05:00
|
|
|
"sinon": "~3.2.1"
|
2016-06-03 05:58:53 -04:00
|
|
|
},
|
|
|
|
"engines": {
|
2018-04-26 05:24:59 -04:00
|
|
|
"node": "~6.14.1"
|
2014-04-28 11:45:59 -04:00
|
|
|
}
|
|
|
|
}
|