UNPKG

fast-cli

Version:

Test your download and upload speed using fast.com

92 lines (91 loc) 1.84 kB
{ "name": "fast-cli", "version": "5.1.0", "description": "Test your download and upload speed using fast.com", "license": "MIT", "repository": "sindresorhus/fast-cli", "funding": "https://github.com/sponsors/sindresorhus", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, "type": "module", "bin": { "fast": "./distribution/cli.js" }, "engines": { "node": ">=20" }, "scripts": { "build": "tsc", "prepublish": "npm run build", "pretest": "npm run build", "test": "xo && NODE_OPTIONS='--import=tsx/esm' ava" }, "files": [ "distribution" ], "keywords": [ "cli-app", "cli", "speed", "test", "fast", "tester", "down", "download", "upload", "up", "speed-test", "speedtest", "connection", "internet", "bandwidth", "measure", "check", "mbps" ], "dependencies": { "ink": "^6.3.1", "ink-spinner": "^5.0.0", "meow": "^14.0.0", "puppeteer": "^24.22.0", "react": "^19.1.1", "unicorn-magic": "^0.3.0" }, "devDependencies": { "@sindresorhus/tsconfig": "^8.0.1", "@types/react": "^19.1.13", "ava": "^6.4.1", "eslint-config-xo-react": "^0.27.0", "eslint-plugin-react": "^7.34.1", "eslint-plugin-react-hooks": "^5.2.0", "execa": "^9.6.0", "p-event": "^7.0.0", "tsx": "^4.20.5", "xo": "^0.59.3" }, "xo": { "extends": [ "xo-react" ], "rules": { "react/prop-types": "off", "react/function-component-definition": "off", "react/boolean-prop-naming": "off", "@typescript-eslint/no-non-null-asserted-optional-chain": "off", "react/no-unused-prop-types": "off", "@typescript-eslint/indent": "off", "react/react-in-jsx-scope": "off" } }, "ava": { "extensions": { "ts": "module", "tsx": "module" }, "workerThreads": false, "timeout": "10m" } }