Bumps [node-fetch](https://github.com/node-fetch/node-fetch) to 2.6.7 and updates ancestor dependency [puppeteer](https://github.com/puppeteer/puppeteer). These dependencies need to be updated together. Updates `node-fetch` from 2.6.5 to 2.6.7 - [Release notes](https://github.com/node-fetch/node-fetch/releases) - [Commits](https://github.com/node-fetch/node-fetch/compare/v2.6.5...v2.6.7) Updates `puppeteer` from 11.0.0 to 19.0.0 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/v11.0.0...puppeteer-core-v19.0.0) --- updated-dependencies: - dependency-name: node-fetch dependency-type: indirect - dependency-name: puppeteer dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"name": "autobaan",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"private": true,
|
|
"engines": {
|
|
"node": "14.x"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -r ./dist || true",
|
|
"build:requester": "rollup -c src/workers/requester/rollup.config.js",
|
|
"build:scheduler": "rollup -c src/workers/scheduler/rollup.config.js",
|
|
"test": "jest",
|
|
"test:clear-cache": "jest --clearCache",
|
|
"test:clean": "npm run test:clear-cache && npm run test",
|
|
"lint": "eslint src/ --ext ts",
|
|
"prettier": "prettier src -w",
|
|
"local": "npx ts-node src/local.ts"
|
|
},
|
|
"author": "Collin Duncan <cgduncan7@gmail.com>",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"dayjs": "^1.10.7",
|
|
"puppeteer": "^19.0.0",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.16.0",
|
|
"@babel/preset-env": "^7.16.4",
|
|
"@babel/preset-typescript": "^7.16.0",
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
"@rollup/plugin-typescript": "^8.3.0",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/puppeteer": "^5.4.4",
|
|
"@types/uuid": "^8.3.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
"@typescript-eslint/parser": "^5.4.0",
|
|
"babel-jest": "^27.3.1",
|
|
"eslint": "^8.2.0",
|
|
"jest": "^27.3.1",
|
|
"prettier": "^2.4.1",
|
|
"rollup": "^2.60.1",
|
|
"typescript": "^4.4.4"
|
|
}
|
|
}
|