2023-07-25 03:20:30 -04:00
|
|
|
{
|
|
|
|
"name": "@overleaf/fetch-utils",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "utilities for node-fetch",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2024-01-16 14:24:03 -05:00
|
|
|
"test": "npm run lint && npm run format && npm run types:check && npm run test:unit",
|
2024-09-09 05:23:59 -04:00
|
|
|
"lint": "eslint --ext .js --ext .cjs --ext .ts --max-warnings 0 --format unix .",
|
|
|
|
"lint:fix": "eslint --fix --ext .js --ext .cjs --ext .ts .",
|
|
|
|
"format": "prettier --list-different $PWD/'**/*.{js,cjs,ts}'",
|
|
|
|
"format:fix": "prettier --write $PWD/'**/*.{js,cjs,ts}'",
|
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"
|
2023-07-25 03:20:30 -04:00
|
|
|
},
|
|
|
|
"author": "Overleaf (https://www.overleaf.com)",
|
|
|
|
"license": "AGPL-3.0-only",
|
|
|
|
"devDependencies": {
|
2024-05-22 05:37:08 -04:00
|
|
|
"@types/node-fetch": "^2.6.11",
|
2024-09-26 06:37:04 -04:00
|
|
|
"body-parser": "^1.20.3",
|
2023-07-25 03:20:30 -04:00
|
|
|
"chai": "^4.3.6",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
2024-09-26 06:37:04 -04:00
|
|
|
"express": "^4.21.0",
|
2024-01-11 08:26:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
|
|
|
"typescript": "^5.0.4"
|
2023-07-25 03:20:30 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@overleaf/o-error": "*",
|
|
|
|
"lodash": "^4.17.21",
|
2024-09-30 05:49:47 -04:00
|
|
|
"node-fetch": "^2.7.0",
|
2024-05-15 05:17:40 -04:00
|
|
|
"selfsigned": "^2.4.1"
|
2023-07-25 03:20:30 -04:00
|
|
|
}
|
|
|
|
}
|