2022-10-05 10:02:19 -04:00
|
|
|
{
|
|
|
|
"name": "@overleaf/ranges-tracker",
|
|
|
|
"description": "Shared logic for syncing comments and tracked changes with operational transforms",
|
2023-01-05 05:16:39 -05:00
|
|
|
"main": "index.cjs",
|
2022-10-05 10:02:19 -04:00
|
|
|
"files": [
|
2024-02-08 05:10:46 -05:00
|
|
|
"index.cjs",
|
|
|
|
"types"
|
2022-10-05 10:02:19 -04:00
|
|
|
],
|
|
|
|
"author": "Overleaf (https://www.overleaf.com)",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2024-01-11 08:26:29 -05:00
|
|
|
"lint": "eslint --ext .js --ext .cjs --max-warnings 0 --format unix .",
|
|
|
|
"lint:fix": "eslint --fix --ext .js --ext .cjs .",
|
|
|
|
"format": "prettier --list-different $PWD/'**/*.{js,cjs}'",
|
|
|
|
"format:fix": "prettier --write $PWD/'**/*.{js,cjs}'",
|
2024-01-16 14:24:03 -05:00
|
|
|
"test": "npm run lint && npm run format && npm run types:check && npm run test:unit",
|
2024-01-11 08:26:29 -05:00
|
|
|
"test:ci": "npm run test:unit",
|
|
|
|
"test:unit": "mocha --exit test/**/*.{js,cjs}",
|
2024-05-06 07:57:39 -04:00
|
|
|
"types:check": "tsc --noEmit"
|
2022-10-05 10:02:19 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-11 08:26:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
|
|
|
"typescript": "^5.0.4"
|
2022-10-05 10:02:19 -04:00
|
|
|
}
|
|
|
|
}
|