1
0
Fork 0
fetch-compare/package.json

59 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2021-09-09 23:47:04 +08:00
{
"name": "fetch-compare",
"version": "0.1.0",
"description": "Compare various implementations of the WHATWG fetch API",
"author": "Ambrose Chua",
"license": "MIT",
2022-02-16 18:50:37 +08:00
"type": "module",
2021-09-09 23:47:04 +08:00
"scripts": {
"start": "node --loader ts-node/esm --no-warnings src/index.ts",
2021-09-09 23:47:04 +08:00
"type-check": "tsc --pretty --noEmit",
"format": "prettier --ignore-path ../.gitignore --write .",
"lint": "xo"
},
"dependencies": {
2022-02-16 18:50:37 +08:00
"@swc/core": "^1.2.140",
"@wdio/logger": "^7.16.0",
"chromedriver": "^98.0.1",
"cli-table3": "^0.6.1",
"geckodriver": "^3.2.0",
2022-02-16 18:50:37 +08:00
"get-port": "^6.0.0",
"koa": "^2.13.4",
"koa-files": "^2.0.0",
"node-fetch": "^3.2.10",
2021-09-09 23:47:04 +08:00
"tcp-port-used": "^1.0.2",
2022-02-16 18:50:37 +08:00
"ts-node": "^10.5.0",
"webdriver": "^7.16.14"
2021-09-09 23:47:04 +08:00
},
"devDependencies": {
"@types/koa": "^2.13.4",
2022-02-16 18:50:37 +08:00
"@types/node": "^17.0.18",
"node-abort-controller": "^3.0.1",
"prettier": "^2.5.1",
"typescript": "^4.6.1-rc",
"xo": "^0.48.0"
2021-09-09 23:47:04 +08:00
},
"prettier": {
"semi": true,
"useTabs": true,
"trailingComma": "all",
"singleQuote": true,
"bracketSpacing": false,
"jsxBracketSameLine": false
},
"xo": {
"prettier": true,
2021-09-10 00:22:43 +08:00
"rules": {
2022-02-16 18:50:37 +08:00
"unicorn/prefer-node-protocol": "off",
"@typescript-eslint/naming-convention": "off"
2021-09-10 00:22:43 +08:00
},
2021-09-10 00:07:54 +08:00
"globals": [
2021-09-30 11:56:57 +08:00
"Deno",
2021-09-10 00:07:54 +08:00
"Request",
"Response",
"Headers",
"fetch"
]
2021-09-09 23:47:04 +08:00
}
}