2014-02-12 12:27:43 -05:00
|
|
|
{
|
2022-02-07 06:46:51 -05:00
|
|
|
"name": "@overleaf/clsi",
|
2018-05-24 14:03:57 -04:00
|
|
|
"description": "A Node.js implementation of the CLSI LaTeX web-API",
|
2022-02-07 06:46:51 -05:00
|
|
|
"private": true,
|
|
|
|
"main": "app.js",
|
2017-12-29 03:08:19 -05:00
|
|
|
"scripts": {
|
2020-02-19 06:10:00 -05:00
|
|
|
"start": "node $NODE_APP_OPTIONS app.js",
|
|
|
|
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
|
|
|
|
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
2021-07-26 07:14:56 -04:00
|
|
|
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
|
2020-02-19 06:10:00 -05:00
|
|
|
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
|
2018-05-24 14:03:57 -04:00
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
2022-02-07 06:46:51 -05:00
|
|
|
"lint": "eslint --max-warnings 0 --format unix .",
|
|
|
|
"format": "prettier --list-different $PWD/'**/*.js'",
|
|
|
|
"format:fix": "prettier --write $PWD/'**/*.js'",
|
|
|
|
"lint:fix": "eslint --fix ."
|
2018-05-24 14:03:57 -04:00
|
|
|
},
|
2014-02-12 12:27:43 -05:00
|
|
|
"dependencies": {
|
2022-03-01 10:09:36 -05:00
|
|
|
"@overleaf/logger": "^3.1.0",
|
|
|
|
"@overleaf/metrics": "^4.0.0",
|
2022-01-27 05:29:10 -05:00
|
|
|
"@overleaf/o-error": "^3.4.0",
|
2022-02-07 06:46:51 -05:00
|
|
|
"@overleaf/settings": "^3.0.0",
|
2022-06-21 04:07:14 -04:00
|
|
|
"async": "3.2.2",
|
2020-03-11 07:20:48 -04:00
|
|
|
"body-parser": "^1.19.0",
|
2021-07-12 12:35:51 -04:00
|
|
|
"bunyan": "^1.8.15",
|
2020-05-11 05:29:16 -04:00
|
|
|
"diskusage": "^1.1.3",
|
2020-03-11 14:25:50 -04:00
|
|
|
"dockerode": "^3.1.0",
|
2020-03-11 07:20:48 -04:00
|
|
|
"express": "^4.17.1",
|
2021-05-14 10:58:11 -04:00
|
|
|
"fs-extra": "^10.0.0",
|
2020-03-11 07:20:48 -04:00
|
|
|
"lockfile": "^1.0.4",
|
2021-05-21 05:35:58 -04:00
|
|
|
"lodash": "^4.17.21",
|
2021-05-18 12:32:21 -04:00
|
|
|
"p-limit": "^3.1.0",
|
2020-03-11 07:20:48 -04:00
|
|
|
"request": "^2.88.2",
|
2021-06-15 04:24:23 -04:00
|
|
|
"send": "^0.17.1",
|
2021-10-06 04:44:05 -04:00
|
|
|
"workerpool": "^6.1.5"
|
2018-05-24 14:03:57 -04:00
|
|
|
},
|
2014-02-12 12:27:43 -05:00
|
|
|
"devDependencies": {
|
2022-02-07 06:46:51 -05:00
|
|
|
"chai": "^4.3.6",
|
2021-07-13 06:55:19 -04:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2022-02-07 06:46:51 -05:00
|
|
|
"mocha": "^8.4.0",
|
2022-07-07 08:27:20 -04:00
|
|
|
"mock-fs": "^5.1.2",
|
2022-02-07 06:46:51 -05:00
|
|
|
"sandboxed-module": "^2.0.4",
|
2020-03-12 05:35:11 -04:00
|
|
|
"sinon": "~9.0.1",
|
2021-09-07 08:57:47 -04:00
|
|
|
"sinon-chai": "^3.7.0",
|
2020-03-11 07:20:48 -04:00
|
|
|
"timekeeper": "2.2.0"
|
2014-02-12 12:27:43 -05:00
|
|
|
}
|
|
|
|
}
|