2023-06-01 07:38:45 -04:00
|
|
|
{
|
|
|
|
"name": "@overleaf/stream-utils",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "stream handling utilities",
|
|
|
|
"main": "index.js",
|
2024-01-11 08:26:29 -05:00
|
|
|
"types": "types/index.js",
|
2023-06-01 07:38:45 -04:00
|
|
|
"scripts": {
|
2024-01-11 08:26:29 -05:00
|
|
|
"test": "npm run lint && npm run format && npm run typecheck && npm run test:unit",
|
|
|
|
"test:unit": "mocha --exit test/**/*.{js,cjs}",
|
|
|
|
"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}'",
|
|
|
|
"test:ci": "npm run test:unit",
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
"update-types": "rm -rf types && tsc --emitDeclarationOnly"
|
2023-06-01 07:38:45 -04:00
|
|
|
},
|
|
|
|
"author": "Overleaf (https://www.overleaf.com)",
|
|
|
|
"license": "AGPL-3.0-only",
|
2024-01-11 08:26:29 -05:00
|
|
|
"devDependencies": {
|
2023-06-01 07:38:45 -04:00
|
|
|
"chai": "^4.3.6",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
2024-01-11 08:26:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
|
|
|
"typescript": "^5.0.4"
|
2023-06-01 07:38:45 -04:00
|
|
|
}
|
|
|
|
}
|