Merge pull request #9868 from overleaf/msm-copybara-ranges-tracker

Add `libraries/ranges-tracker` to copybara sync

GitOrigin-RevId: 0734887c02e27c4c51f4b3ebe11e0a177b5fd0af
This commit is contained in:
Miguel Serrano
2022-10-05 14:07:44 +00:00
committed by Copybot
parent ff3ea11fd6
commit ddb907187e
6 changed files with 831 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "@overleaf/ranges-tracker",
"description": "Shared logic for syncing comments and tracked changes with operational transforms",
"main": "index.js",
"files": [
"index.js"
],
"author": "Overleaf (https://www.overleaf.com)",
"private": true,
"scripts": {
"lint": "eslint --max-warnings 0 --format unix .",
"lint:fix": "eslint --fix .",
"format": "prettier --list-different $PWD/'**/*.js'",
"format:fix": "prettier --write $PWD/'**/*.js'",
"test": "mocha --recursive test/unit/src/",
"test:ci": "npm run test"
},
"devDependencies": {
"mocha": "^10.0.0"
}
}