1
0
Fork 0
fetch-compare/package.json

57 lines
1.2 KiB
JSON
Raw 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",
"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": {
"@swc/core": "^1.2.85",
"@wdio/logger": "^7.7.0",
"chromedriver": "^93.0.1",
"cli-table3": "^0.6.0",
"geckodriver": "^2.0.4",
"get-port": "^5.1.1",
"koa": "^2.13.1",
"koa-files": "^1.0.3",
"node-fetch": "^3.0.0",
"tcp-port-used": "^1.0.2",
"ts-node": "^10.2.1",
"webdriver": "^7.12.2"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/node": "^16.9.0",
2021-09-10 01:55:07 +08:00
"node-abort-controller": "^3.0.0",
2021-09-09 23:47:04 +08:00
"prettier": "^2.4.0",
"typescript": "^4.4.2",
"xo": "^0.44.0"
},
"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": {
"unicorn/prefer-node-protocol": "off"
},
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
}
}