-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.75 KB
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
{
"name": "@cloudflare/speedtest",
"version": "1.13.1",
"description": "Component to perform network speed tests against Cloudflare's edge network",
"type": "module",
"exports": "./dist/speedtest.js",
"main": "dist/speedtest.js",
"module": "dist/speedtest.js",
"types": "dist/speedtest.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare/speedtest.git"
},
"homepage": "https://github.com/cloudflare/speedtest",
"keywords": [
"cloudflare",
"speed",
"network quality",
"bandwidth",
"latency",
"packet loss"
],
"author": {
"name": "Vasco Asturiano",
"email": "vasco@cloudflare.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudflare/speedtest/issues"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:e2e": "vitest run --project e2e",
"test:watch": "vitest",
"lint": "pnpm lint:oxlint && pnpm lint:oxfmt && pnpm lint:tsc",
"lint:oxlint": "oxlint",
"lint:oxfmt": "oxfmt --check",
"lint:tsc": "tsc",
"format": "oxlint --fix && oxfmt",
"prepare": "husky && pnpm build"
},
"lint-staged": {
"*.{ts,mts,cts,js,mjs,cjs}": [
"oxlint --fix",
"oxfmt"
],
"*.{json,jsonc}": "oxfmt"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@vitest/browser-playwright": "^4.1.7",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"oxfmt": "^0.64.0",
"oxlint": "^1.79.0",
"playwright": "^1.60.0",
"tsdown": "^0.22.1",
"typescript": "^5.8.3",
"vite": "^8.0.16",
"vitest": "^4.1.7"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@11.4.0"
}