mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
808fd2c0f9
Move overleaf-editor-core code to async/await GitOrigin-RevId: 4ab8a58ba2ab402ff60a40e831b9c4a2c4701177
30 lines
827 B
JSON
30 lines
827 B
JSON
{
|
|
"name": "overleaf-editor-core",
|
|
"version": "1.0.0",
|
|
"description": "Library shared between the editor server and clients.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"format": "prettier --list-different $PWD/'**/*.js'",
|
|
"format:fix": "prettier --write $PWD/'**/*.js'",
|
|
"lint": "eslint --max-warnings 0 --format unix lib test && tsc",
|
|
"lint:fix": "eslint --fix lib test",
|
|
"test:ci": "npm run test",
|
|
"coverage": "istanbul cover _mocha"
|
|
},
|
|
"author": "team@overleaf.com",
|
|
"license": "Proprietary",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"chai": "^3.3.0",
|
|
"istanbul": "^0.4.5",
|
|
"mocha": "^10.2.0",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"dependencies": {
|
|
"@overleaf/o-error": "*",
|
|
"check-types": "^5.1.0",
|
|
"lodash": "^4.17.19",
|
|
"p-map": "^4.0.0"
|
|
}
|
|
}
|