| 123456789101112131415161718192021222324252627282930 |
- {
- "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"
- }
- }
|