mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ee85d948e2
GitOrigin-RevId: ef2ef77e26df59d1af3df6dc664e284d3c70102d
31 lines
863 B
JSON
31 lines
863 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": {
|
|
"@types/bluebird": "^3.5.30",
|
|
"chai": "^3.3.0",
|
|
"istanbul": "^0.4.5",
|
|
"mocha": "^6.1.4",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"dependencies": {
|
|
"@overleaf/o-error": "*",
|
|
"bluebird": "^3.1.1",
|
|
"check-types": "^5.1.0",
|
|
"lodash": "^4.17.19"
|
|
}
|
|
}
|