2014-04-28 15:45:59 +00:00
|
|
|
{
|
|
|
|
"name": "docstore-sharelatex",
|
2015-02-10 13:22:28 +00:00
|
|
|
"version": "0.1.2",
|
2014-04-28 15:45:59 +00:00
|
|
|
"description": "A CRUD API for handling text documents in projects",
|
|
|
|
"author": "ShareLaTeX <team@sharelatex>",
|
2014-08-19 12:37:06 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/sharelatex/docstore-sharelatex.git"
|
|
|
|
},
|
2017-12-29 08:12:31 +00:00
|
|
|
"scripts": {
|
2018-12-11 14:49:29 +00: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 10:27:31 +00:00
|
|
|
"start": "npm run compile:app && node $NODE_APP_OPTIONS app.js",
|
2018-09-28 11:13:53 +00: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 10:27:31 +00:00
|
|
|
"test:acceptance": "npm run compile:app && npm run compile:acceptance_tests && npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
2018-05-29 12:59:19 +00:00
|
|
|
"test:unit:_run": "mocha --recursive --reporter spec --exit $@ test/unit/js",
|
2018-05-23 10:27:31 +00: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 11:13:53 +00: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 08:12:31 +00:00
|
|
|
},
|
2014-04-28 15:45:59 +00:00
|
|
|
"dependencies": {
|
2017-12-29 10:35:40 +00:00
|
|
|
"async": "~0.8.0",
|
|
|
|
"body-parser": "~1.0.2",
|
2018-12-11 14:34:39 +00:00
|
|
|
"coffee-script": "^1.12.7",
|
2017-12-29 10:35:40 +00:00
|
|
|
"express": "~4.1.1",
|
2019-06-19 08:37:54 +00:00
|
|
|
"logger-sharelatex": "^1.7.0",
|
|
|
|
"metrics-sharelatex": "^2.2.0",
|
2017-08-22 07:26:30 +00:00
|
|
|
"mongojs": "2.4.0",
|
2019-01-30 16:03:28 +00:00
|
|
|
"settings-sharelatex": "^1.1.0",
|
2017-12-29 10:35:40 +00:00
|
|
|
"underscore": "~1.6.0"
|
2014-04-28 15:45:59 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-12-29 10:35:40 +00:00
|
|
|
"bunyan": "~0.22.3",
|
|
|
|
"chai": "~1.9.1",
|
2018-05-23 10:27:31 +00:00
|
|
|
"mocha": "^4.0.1",
|
2017-12-29 10:35:40 +00:00
|
|
|
"request": "~2.34.0",
|
2014-04-28 15:45:59 +00:00
|
|
|
"sandboxed-module": "~0.3.0",
|
2017-12-29 10:35:40 +00:00
|
|
|
"sinon": "~3.2.1"
|
2016-06-03 09:58:53 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2018-04-26 09:24:59 +00:00
|
|
|
"node": "~6.14.1"
|
2014-04-28 15:45:59 +00:00
|
|
|
}
|
|
|
|
}
|