-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.79 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
{
"name": "@cloudflare/speedtest",
"version": "1.10.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": "eslint \"src/**/*.ts\" \"*.json\"",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky && pnpm build"
},
"lint-staged": {
"*.ts": "eslint",
"*.json": "eslint"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@eslint/js": "^9.39.4",
"@vitest/browser-playwright": "^4.1.7",
"eslint": "^9.27.0",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prettier": "^5.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"playwright": "^1.60.0",
"prettier": "^3.5.3",
"tsdown": "^0.22.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@11.4.0"
}