2014-08-15 07:13:35 -04:00
|
|
|
{
|
2022-02-07 06:46:51 -05:00
|
|
|
"name": "@overleaf/spelling",
|
2014-08-15 07:13:35 -04:00
|
|
|
"description": "A JSON API wrapper around aspell",
|
2022-02-07 06:46:51 -05:00
|
|
|
"private": true,
|
|
|
|
"main": "app.js",
|
2022-12-20 07:11:25 -05:00
|
|
|
"type": "module",
|
2017-12-29 03:16:04 -05:00
|
|
|
"scripts": {
|
2019-01-03 05:06:42 -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')",
|
2023-12-07 05:05:50 -05:00
|
|
|
"start": "node app.js",
|
2022-12-20 07:11:25 -05:00
|
|
|
"test:acceptance:_run": "LOG_LEVEL=fatal mocha --loader=esmock --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
|
2019-07-03 08:41:01 -04:00
|
|
|
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
2022-12-20 07:11:25 -05:00
|
|
|
"test:unit:_run": "LOG_LEVEL=fatal mocha --loader=esmock --recursive --reporter spec $@ test/unit/js",
|
2019-07-03 08:41:01 -04:00
|
|
|
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
|
2018-05-22 06:40:15 -04:00
|
|
|
"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-10-03 10:19:37 -04:00
|
|
|
"compile:all": "npm run compile:app && npm run compile:unit_tests && npm run compile:acceptance_tests && npm run compile:smoke_tests",
|
2023-12-07 05:05:50 -05:00
|
|
|
"nodemon": "node --watch app.js",
|
2019-07-03 08:41:01 -04:00
|
|
|
"compile:smoke_tests": "[ ! -e test/smoke/coffee ] && echo 'No smoke tests to compile' || coffee -o test/smoke/js -c test/smoke/coffee",
|
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'",
|
2024-01-16 14:24:03 -05:00
|
|
|
"lint:fix": "eslint --fix .",
|
|
|
|
"types:check": "tsc --noEmit"
|
2017-12-29 03:16:04 -05:00
|
|
|
},
|
2015-03-20 11:25:59 -04:00
|
|
|
"version": "0.1.4",
|
2014-08-15 07:13:35 -04:00
|
|
|
"dependencies": {
|
2022-10-27 11:35:43 -04:00
|
|
|
"@overleaf/logger": "*",
|
|
|
|
"@overleaf/metrics": "*",
|
|
|
|
"@overleaf/o-error": "*",
|
|
|
|
"@overleaf/settings": "*",
|
2024-05-31 05:51:51 -04:00
|
|
|
"async": "^3.2.5",
|
2020-03-30 06:49:56 -04:00
|
|
|
"body-parser": "^1.19.0",
|
2021-07-12 12:35:49 -04:00
|
|
|
"bunyan": "^1.8.15",
|
2024-04-22 08:12:16 -04:00
|
|
|
"express": "^4.19.2",
|
2020-03-30 06:49:56 -04:00
|
|
|
"lru-cache": "^5.1.1",
|
|
|
|
"request": "^2.88.2",
|
2021-05-07 01:22:05 -04:00
|
|
|
"underscore": "1.13.1"
|
2014-08-15 07:13:35 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-07 06:46:51 -05:00
|
|
|
"chai": "^4.3.6",
|
2021-07-13 06:55:18 -04:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2024-02-16 10:57:12 -05:00
|
|
|
"esmock": "^2.6.3",
|
2023-01-16 10:55:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
2024-01-11 08:25:25 -05:00
|
|
|
"sinon": "^9.2.4",
|
|
|
|
"typescript": "^5.0.4"
|
2014-08-15 07:13:35 -04:00
|
|
|
}
|
|
|
|
}
|