forked from sindresorhus/fast-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.43 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
{
"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",
"main": "cli.js",
"bin": {
"fast": "cli.js"
},
"engines": {
"node": ">=14.0"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepack": "npm run build",
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"speed",
"test",
"fast",
"tester",
"down",
"download",
"upload",
"up",
"speed-test",
"speedtest",
"connection",
"internet",
"bandwidth",
"measure",
"check",
"mbps"
],
"dependencies": {
"chalk": "^5.2.0",
"delay": "^5.0.0",
"meow": "^11.0.0",
"ora": "^6.1.2",
"puppeteer": "^19.7.0",
"zen-observable": "^0.10.0"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@types/zen-observable": "^0.8.3",
"ava": "^5.2.0",
"p-event": "^5.0.1",
"tsup": "^6.6.2",
"xo": "^0.53.1"
},
"xo": {
"extends": [
"xo-react"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"arrowParens": "avoid",
"trailingComma": "all",
"printWidth": 80
}
}