-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.75 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
{
"name": "universal-speedtest",
"version": "2.0.6",
"description": "This library allows you to test speed with various speed testing sites.",
"main": "dist/index.js",
"scripts": {
"test": "ts-mocha tests/**/*.test.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"build": "tsc",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"coverage": "nyc npm test",
"lint": "eslint . --ext .ts",
"lintFix": "eslint . --ext .ts --fix"
},
"author": "Karel Krýda (https://github.com/karelkryda)",
"license": "GPL-3.0",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/karelkryda/universal-speedtest.git"
},
"keywords": [
"speed",
"test",
"fast",
"fast api",
"speed test",
"network",
"fast.com",
"api",
"netmetr.cz",
"universal",
"universal speed test",
"cloudflare"
],
"bugs": {
"url": "https://github.com/karelkryda/universal-speedtest/issues"
},
"homepage": "https://github.com/karelkryda/universal-speedtest#readme",
"dependencies": {
"@types/node": "^18.11.0",
"convert-units": "^3.0.0-beta.0",
"fast-xml-parser": "^4.0.11",
"urllib": "^3.3.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=12.0.0"
}
}