-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
71 lines (71 loc) · 1.77 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
{
"name": "@cloudflare/speedtest",
"version": "1.3.0",
"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": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudflare/speedtest/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c",
"lint": "eslint \"src/**/*.js\"",
"format": "prettier --write \"src/**/*.js\"",
"prepare": "husky install .husky && npm run build"
},
"lint-staged": {
"*.js": "eslint"
},
"files": [
"dist/**/*"
],
"dependencies": {
"d3-scale": "^4.0.2",
"isomorphic-fetch": "^3.0.0",
"lodash.memoize": "^4.1.2"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.2.1",
"eslint": "^8.49.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"rollup": "^3.29.1",
"rollup-plugin-dts": "^6.0.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=12"
}
}