overleaf/libraries/overleaf-editor-core/package.json
Eric Mc Sween d01e83b453 Merge pull request #11170 from overleaf/em-upgrade-mocha
Upgrade mocha to 10.2.0

GitOrigin-RevId: e49606c73e813904d9b794792a838a951a814585
2023-01-17 09:06:28 +00:00

31 lines
864 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": "^10.2.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@overleaf/o-error": "*",
"bluebird": "^3.1.1",
"check-types": "^5.1.0",
"lodash": "^4.17.19"
}
}