-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
89 lines (89 loc) · 1.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "fast-cli",
"version": "4.0.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": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": {
"fast": "./distribution/cli.js"
},
"engines": {
"node": ">=18"
},
"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": "^5.0.0",
"ink-spinner": "^5.0.0",
"meow": "^13.2.0",
"puppeteer": "^22.8.1",
"react": "^18.3.1",
"unicorn-magic": "^0.2.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/react": "^18.3.2",
"ava": "^6.1.3",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"execa": "^9.1.0",
"p-event": "^6.0.1",
"tsx": "^4.10.2",
"xo": "^0.58.0"
},
"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"
}
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"workerThreads": false,
"timeout": "10m"
}
}